Skip to main content

Go High Level

Apple Sepin avatar
Written by Apple Sepin
Updated this week

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>

2. Navigate to your Funnel.

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

4. 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: '[email protected]', // 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>

5. Click Footer Code and paste in the Event Code.

6. 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

4. 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 & Sequence

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.

Did this answer your question?