Skip to main content

Terrific Pixel- For Customers using Shopify

Track & enhance live sessions by leveraging customer data like abandoned carts and best sellers.

Updated over 3 weeks ago

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';

window.ShopifyTerrificConfig = {

storeId: STORE_ID,

eventsUrl: EVENTS_URL,

};

const script = document.createElement('script');

script.async = true;

script.onload = function () {

analytics.subscribe('checkout_started', window.ShopifyTerrificAnalytics.handleCheckoutStarted);

analytics.subscribe('checkout_completed', window.ShopifyTerrificAnalytics.handleCheckoutCompleted);

analytics.subscribe('page_viewed', window.ShopifyTerrificAnalytics.handlePageViewed);

analytics.subscribe('product_viewed', window.ShopifyTerrificAnalytics.handleProductViewed);

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 :)

Did this answer your question?