Setup
How to setup EngineRoom's Pixel
Overview
EngineRoom's Pixel helps you take your marketing to new heights by capturing leads on your website, integrating them into EngineRoom and calculating the attribution on them so you know exactly which marketing channels are driving leads and ROI.
Setting up the EngineRoom Pixel is a simple process that requires you to install one-line of code onto your website. If you've ever used a web analytic tracking service (like Google Analytics), then you would be familiar with this process.
Quick setup
Login to your EngineRoom account
In the left menu, click on Integrations
Click EngineRoom Pixel
Copy the setup code
Paste the code snippet into the
<head></head>
tag of your websiteNote: Make sure this snippet is present on every page that you want to track
Review UTM Parameters to ensure EngineRoom's Pixel is able to correctly attribute your website leads
Requirements
Currently EngineRoom's Pixel is able to capture the following types of Leads from your website:
Contact forms that use the
<form>
tagPodium live chats
Compatible Form Attributes
EngineRoom's Pixel uses the name
attribute on your form <input>
to correctly attribute and map website leads. Because of this, to ensure the highest level of attribution accuracy, we strongly recommend that the following naming conventions are used when naming your form inputs.
Note: All names are case-insensitive.
Name
name, customer_name, form_fields[name]
First Name
first_name, first-name, firstname, form_fields[first_name]
Last Name
last_name, last-name, lastname, form_fields[last_name]
Email
email, customer_email, form_fields[email]
Phone
phone, mobile, number, form_fields[phone]
Message
message, comments, form_fields[message]
Postcode
postcode
Suburb
suburb
All other form inputs will be stored in a single data
field that can be accessed accordingly.
Below is an example of a form that would map 1:1 in EngineRoom.
Naming Conventions for Website with Gravity Form
For users integrating Pixel with Gravity Forms, name & class attributes cannot be updated against form elements. Instead, the class attribute of the parent element will be captured. Below is the documentation outlining the guidelines for identifying parent elements within Gravity Forms.
Attribute Determination Logic
We initially check if the name
attribute of input elements matches certain formats tailored for Gravity Forms.
Examples of names that match Gravity form elements:
input_xx_xx
input_xx
Once it matches, the class name starts with er-pixel-
of the parent <li>
element or <div>
element with class gfield
will be used.
Class name for different fields:
Name
er-pixel-name
er-pixel-first_name
er-pixel-last_name
Email =
er-pixel-email
Phone =
er-pixel-phone
Message =
er-pixel-message
Example HTML of <div>
element with class gfield
in Gravity Form:
<div>
element with class gfield
in Gravity Form: er-pixel-first_name
is captured as field name
Example HTML of <li>
element in Gravity Form:
<li>
element in Gravity Form: er-pixel-phone
is captured as field name
Blocking forms from being tracked
In the event you don't want to track a specific form, you can define a custom attribute on the <form>
attribute called track-form
and set its value to either 0
or false
. This will tell the EngineRoom Pixel not to track these forms and they will not appear in the EngineRoom Platform.
This is particularly useful for certain CMS systems whereby search bars use the form
attribute. Known systems that do this are Webflow and Shopify.
Below is an example of this.
Limitations
EngineRoom is currently unable to integrate website leads that:
Use contact forms that are embedded in an
<iframe>
tag
Platform specific setup guides
If you don't see your website platform listed above, don't worry. We can still collect leads from your platform as long as you have a way to insert the EngineRoom Pixel into your website.
If you don’t want to deal with any code or ask a developer to insert the EngineRoom Pixel, you can directly add the snippet through GTM. Follow this guide on how to do it: Google Tag Manager
Last updated