LogoLogo
  • Getting Started
    • What is Growify?
    • Getting Started: Your Guided Onboarding Tutorial
  • Growify Academy
    • What is Pixel Connection?
    • Attribution Model
      • First Touch
      • Last Touch
      • Last Non Direct
      • Linear
  • Dashboards
    • Overview
    • Attribution
  • Customers
    • Journey
    • Profiles
  • Creatives
    • Images
    • Videos
    • Copies
  • Onboarding
    • Welcome to Growify
    • 1. Create Workspace
    • 2. Install Pixel
      • Ecommerce
        • Shopify Integration
        • Shopify Legacy
        • WooCommerce
        • Google Tag Manager
        • Other Ecommerce Platforms
      • Lead Generation
        • Google Tag Manager
        • WordPress
        • Go High Level
        • Other
    • 3. Connect Ad Channels
    • 4. Add UTMs
      • Tracking for Meta Ads
      • Tracking for Google Ads
      • Tracking for Klaviyo
      • Tracking for TikTok Ads
      • Tracking for Pinterest Ads
      • Tracking for Microsoft Ads
      • Tracking for LinkedIn Ads
      • Tracking for Reddit Ads
      • Tracking for Snapchat Ads
      • Tracking for Applovin
      • Tracking for PostScript
      • Tracking for Attentive
      • Tracking for X Ads
      • Tracking for Adroll
      • Tracking for Taboola
      • Tracking for Outbrain
      • Tracking for ShareASale
Powered by GitBook
On this page
  • 1. Install the Growify Pixel
  • 2. Track Conversion Events
  • 3. Verify Pixel Status
  • Currency, Validation & Sequence
Export as PDF
  1. Onboarding
  2. 2. Install Pixel
  3. Lead Generation

Other

The Growify Pixel is a code snippet that enables us to gather behavioral data about your website visitors. The data feeds into our backend graph, allowing us to track customer journeys from site visit to purchase, along with marketing touchpoints in between.


1. Install the Growify Pixel

  1. Copy & paste the following script inside the tag on every page of your website.

<script
            src="https://cdn.growify.ai/pixel.min.js"
            data-website-id="ENTER_WORKSPACE_ID_HERE"
            data-endpoint="api_v2"
            data-platform="web"
        ></script>

2. Track Conversion Events

Our generic script to track Conversion events from any checkout page.

  1. Please be sure it fires at the tail end of your customer journey — normally on your order confirmation page or thank you page.

<script type="application/javascript">
    window.grp('conversion', {
                userEmail: 'john@example.com',
                userFirstName: 'John',
                userLastName: 'Doe',
                userId: 'test-user',
                orderId: 'ORD122',
                tax: 2,
                shipping: 5,
                products: [
                    {
                    productId: 'SKU123',
                    productName: 'Pixel Shirt',
                    productPrice: 20,
                    productBrand: 'Growify',
                    productQuantity: 1,
                    purchaseValue: 20
                    }
                ]
                })
</script>

It's recommended that somebody with basic Javascript knowledge sets up the script to decrease the likelihood of any issues.


3. Verify Pixel Status

As soon as the Pixel is connected, Growify starts collecting events. To make sure that your fireConversion is triggering correctly, please check the Pixel status in the status bar ( last view and last purchase ).

Any misfires will cause a lack of tracking and attribution for any associated orders.

Any missing or incorrect historical pixel data cannot be recovered. That said, it’s extremely important that your fireConversion fires correctly from day one.

Growify offers a dashboard to verify your Pixel is triggering correctly. Go to the Integration tab in your Workspace to check the status.


Currency, Validation & Sequence

Currency

The pixel assumes all incoming data uses the same currency as the Workspace currency.

Please ensure the currency setting in Shopify (or your platform) aligns with the one set in the Workspace.

Validation

Products: A few key products must be included in product array.

Product quantity: The orderId must be present and unique per transaction. If the id is missing or reused, that may be a signal of duplicate firing.

Product price: Total value should be greater than 0.

Sequence

Ensure the Growify Pixel is installed and triggered (Step 1) BEFORE firing the Conversion Event.

PreviousGo High LevelNext3. Connect Ad Channels

Last updated 8 days ago