Clickstream

Clickstream extension is automatically installed from the shopify app

Our custom-built user event tracking solution empowers store owners to comprehensively monitor and analyze user engagements on their websites. Our APIs take the signals from the clickstream data to provide more relevant product recommendations.

Add this code to Global HTML or every page on your website. Replace the Client_id and API_KEY with actual values from your store.

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Your Page Title</title>
    <!-- Load analyticsv2.js -->
    <script src="https://d3jitr2q5p96mn.cloudfront.net/analytics.js"></script>
    <script>
        // Initialize and send events
        document.addEventListener('DOMContentLoaded', function () {
            // Replace 'your_client_id' and 'your_api_key' with actual values
            discoveristTracker.init('your_client_id', 'your_api_key');
        });
    </script>
</head>

<body>
    <!-- Your page content goes here -->
</body>

</html>

Events

Please add code to track the following events with the payload specified in the documentation.

page_viewed

product_viewed

search_submitted

product_added_to_cart

checkout_started

checkout_completed

module_loaded_discoverist

module_viewed_discoverist

product_clicked_discoverist

product_added_to_cart_discoverist

Last updated