Getting Started With Conversion Events
Follow this document to get set up tracking your conversions and attributing that data to ad, campaingn source etc.
A small example on how to configure
This is a small example on how to setup a click event within your project instance, click bellow to see how to setup:
Introduction to tracking clicks
This section shows how to set up your project instance. Below you can find a code snippet that you can copy:
Install the Client into your app
Once successfully Creating a project
you can now start with creating your click event to track any button on your site
Possible use cases:
- Allows you to track specific or all buttons on your website
- Tracks the click back to the origin of campaign/ad/promotion.
- Even though we do not support A/B testing yet, it could also be used for this purpose
Important Note:
In order to get started make sure You have the initial script mentioned in the introduction and the OSS Client, make sure that both of these scripts are embedded into your app, this will allow you to track way more accurately
We Recommend That:
To ensure accurate tracking and performance attribution, we strongly recommend using URL PARAMETERS in your campaign links. This helps attribute clicks precisely back to the original source. For implementation details, please refer to the tracking parameters guide.
Our Following examples
1<!-- Wordpress, Webflow, Shopify and Framer example -->
2<!-- This will work for almost any other javascript framework too -->
3
4<a href="YOUR_ACTUAL_LINK" data-click="YOUR_CLICK_ID" data-navigate-to="YOUR_ACTUAL_LINK">
5 Track anchor tags example
6</a>
7
8<a href="YOUR_ACTUAL_LINK" data-click="YOUR_CLICK_ID" data-navigate-to="YOUR_ACTUAL_LINK">
9 <button>About flowgrid enterprise</button>
10</a>
11
Note:
Copy & Paste YOUR_CLICK_ID
with your actual click ID. Your click id should be prefixed with flowgrid_
Tracking is disabled on localhost
. CORS policies
ensure only whitelisted sites send data, so local requests will fail and no data is sent to your dashboard during development.
Verify Installation
Within projects dashboard click on event logs, this will navigate you to the dashboard tracking one unified instance. Hit the refresh button in the dashboard to see if data is being collected.
Take Note of:
If you tracking more than one button with the same Click ID, the following happens, our client script applies a cooldown to each button after a visitor/user interacts with it to prevent unnecessary data being pushed into your instance.