Skip to main content
All CollectionsThird-Party App IntegrationWishlist
Growave Wishlist Integration Guide
Growave Wishlist Integration Guide

Here is the guideline to make Growave Integration with Boost AI Search & Discovery app work.

Thomas Ta avatar
Written by Thomas Ta
Updated over a week ago

📖 Growave is the all-in-one marketing platform that empowers your Shopify store with product reviews, wishlists, loyalty programs, referrals, social login, and UGC. Here is the guideline to make Growave Integration with Boost AI Search & Discovery app work.

Integrate Growave Wishlist

V3

⚠️ This feature only works with Boost AI Search & Discovery V3. To find out which version of our app your store's current theme is installed with, please follow this article.

1. Go into Growave app> Settings > General settings > More > Manage app.


2. Select your preferred theme > Save.

3. From your Shopify admin, go to Online Store > Themes.

4. Find the theme you'd like to integrate into the app and click Actions (⋯) > Edit code.

5. In Asset folder, find this file named: boost-sd-custom.js.

6. Add the code snippet below to the boost-sd-custom.js file:

if (window.boostSDAppConfig) { 
window.boostSDAppConfig.integration = Object.assign({ wishlists: 'growave' }, window.boostSDAppConfig.integration || {});
}

7. Click Save and you're all set!

8. Go back to Shopify Admin > Sales channels > Online Store > Themes > Find the theme you are working on > Customize.

9. In the Shopify Theme editor > From the left sidebar, select App embeds > Toggle ON the 3rd app you'd like to integrate.

Turbo

⚠️ This feature only works with Boost AI Search & Discovery Turbo. To find out which version of our app your store's current theme is installed with, please follow this article.

1. Go to Boost AI Search & Discovery > Integration > Shopify Integration > Select your preferred theme > Edit code.

image.png

2. Locate this file customization.js & add the following code at the end of it:

if (window.boostWidgetIntegration) {
window.boostWidgetIntegration.integration = Object.assign(
{ wishlists: 'growave' },
window.boostWidgetIntegration.integration || {}
);
}

3. Find this file product-item/main.liquid & add the following code as below:

<div style="display: block;" class="gw-add-to-wishlist-product-card-placeholder" data-gw-product-id="{{ product.id }}" data-gw-variant-id="{{ product.variants[0].id }}" data-no-redirect="true"></div>
image.png

4. Click Save and you're set.

If you encounter any issues during the integration process, please don't hesitate to contact our support team for further assistance at [email protected].

Did this answer your question?