Personalisation Tool

Navigate to this page where you can generate the analytics tracking code. This might be within personalisation tool's dashboard or a specific section of your website's content management system.

  1. Select the Personalisation Tool: Choose the analytics tool you want to generate the code for from the dropdown menu. The available options could include AB Tasty and Braze.

  2. Provide Tracking Parameter Name: Enter the Tracking Parameter Name. This is a unique identifier that helps associate the generated code with your website's data.

  3. Click on "Generate Code": After selecting the analytics tool and providing the Tracking Parameter Name, click the "Generate code" button. This action triggers the generation of the tracking code snippet specific to the selected analytics tool

  4. Retrieve the Generated Code: Once the code is generated, it will be displayed on the page. Copy the entire code snippet to your clipboard. This code snippet contains the tracking information necessary for the selected analytics tool to gather data from your website.

  5. Implement the Generated Code: Open the HTML document of the web page where you want to implement the analytics tracking. Follow these steps to add the code snippet within the <head> section of your HTML document:

a. Locate the <head> tag in your HTML document. This is typically located between the opening <html> tag and the opening <body> tag.

b. Insert a <script> tag within the <head> section.

c. Paste the generated code snippet inside the <script> tag.

Sample snippet code-

<html>
<head>
    //Other meta tags and styles may be present here
    <script>
        
        //Add your generated JavaScript code here
        
    </script>
</head>
<body>
    //Your website's content
</body>
</html>