1. Log in to your Shopify Admin
Navigate to the Bottom Left then click on Settings
2. Enter Customer events
3. Click on Add Custom pixel
4. Give the pixel a name. For e.g "TerrificLive pixel"
5. Select "Add pixel"
6. Click on permissions
7. Set it to collect data from Marketing and Analytics
8. Under "Date sale" select Data collected does not qualify as data sale
9. Clear the box
10. Copy and paste the pixel code instead:
β(function loadTerrificAnalytics() {
const STORE_ID = 'store-id-here';
const EVENTS_URL = 'https://terrific.live/api/customer-shop-event';
window.ShopifyTerrificConfig = {
storeId: STORE_ID,
eventsUrl: EVENTS_URL,
};
const script = document.createElement('script');
script.src = 'https://live-sdk.terrific.live/shopify-analytics-sdk.min.js';
script.async = true;
script.onload = function () {
analytics.subscribe('checkout_completed', window.ShopifyTerrificAnalytics.handleCheckoutCompleted);
analytics.subscribe('page_viewed', window.ShopifyTerrificAnalytics.handlePageViewed);
analytics.subscribe('product_added_to_cart', window.ShopifyTerrificAnalytics.handleProductAddedToCart);
analytics.subscribe('product_removed_from_cart', window.ShopifyTerrificAnalytics.handleProductRemovedFromCart);
};
document.head.appendChild(script);
})();
11. Replace the "store-id-here" with the customer's Terrific store ID (You can get the Store ID from your Account Executive)
β
12. Paste the store ID inside the quotation marks
13. Then Save
14. After saving, click Connect
15. Continue and press Connect
16. You are good to go :)