Skip to main content
Terrific Pixel- For Account Executives

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 it from the black admin panel as follows:

12. Enter the Black Admin
​
Then Copy the Store ID of the store you want to track

13. Paste the store ID inside the quotation marks

14. Then Save

15. After saving, click Connect

16. Continue and press Connect


17. You are good to go :)

Did this answer your question?