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. Add Pixel Code to Funnel in HighLevel
  • 2. Conversion Events
  • 3. Verify PowerPixel Connection and Status
  • Currency, Validation & SequenceCurrency
Export as PDF
  1. Onboarding
  2. 2. Install Pixel
  3. Lead Generation

Go High Level

PreviousWordPressNextOther

Last updated 8 days ago

Growify’s Go High Level integration allows you to track customer events and gain deeper insights into your store’s performance. Follow these steps to create and set up a custom pixel for tracking.


1. Add Pixel Code to Funnel in HighLevel

  1. Copy the main pixel code from this snippet here.

<script
            src="https://cdn.growify.ai/pixel.min.js"
            data-website-id="378a11639e0be4d594163bbfebc09b02:beef7043e56f95858e96c5a29b3bf5f5f90a6d05967d18f13dcd56797a2d8df496c27ca7527d2af11e3bbd0e0b8b030a"
            data-endpoint="api_v2"
            data-platform="web"
        ></script>
  1. Navigate to your Funnel.

  2. Click Settings → Paste in your Pixel Code to the Head Tracking Code Section.

  1. Save your changes.


2. Conversion Events

  1. Choose the Step where the conversion event is occurring.

  2. Edit the Step.

  3. Choose Settings → Tracking Code.

  4. Copy the event code from the snippet below.

<script type="application/javascript">
	window.grpQueue = window.grpQueue || [];
	  if (!window.grp) {
	    window.grp = function () {
	      window.grpQueue.push(arguments);
	    };
	  }
	window.grp('conversion', {
                userEmail: 'john@example.com', // Replace with user's email
                userFirstName: 'John', // Replace with user's first name
                userLastName: 'Doe', // Replace with user's last name
                userId: 'test-user', // Replace with user's ID
                orderId: 'ORD122', // Replace with user's order ID
                tax: 2, // Replace with user's tax
                shipping: 5, // Replace with user's shipping
                products: [
                    {
                    productId: 'SKU123', // Replace with the appropriate product id
                    productName: 'Pixel Shirt', // Replace with product name
                    productPrice: 20, // Replace with product price
                    productBrand: 'Growify', // Replace with your product brand
                    productQuantity: 1, // Replace with product queantity
                    purchaseValue: 20 // Replace with your purchase value
                    }
                ]
        })
</script>
  1. Click Footer Code and paste in the Event Code.

  1. Save your changes.


3. Verify PowerPixel Connection and Status

  1. Navigate to your store's homepage

  2. Open a DevTools

  • Windows: Ctrl + Shift + I or F12

  • macOS: ⌘ + ⌥ + I

3. Refresh the page, then go to the Network Tab. Filter by the keyword 'grp' and locate the event

  1. If the event has been located, the status will be updated as soon as the data is indexed (which takes around 10-15 minutes) on the Growify dashboard (10)

Great job! The Power Pixel SDK has been successfully installed and view events are now being collected.


Currency, Validation & SequenceCurrency

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.