Skip to main content
All CollectionsGetting Started With TerrificTerrific Pixel
Terrific Pixel- For Customers using Shopify
Terrific Pixel- For Customers using Shopify

Track live session effectiveness with reliable attribution between Terrific checkouts and the shop's website. Enhance live sessions by leveraging customer data like abandoned carts and best sellers.

Updated over 2 months 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';

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

Did this answer your question?