I have a wix website which I connected to meta capi. After connecting the website I can see that when I get leads from both the browser and the server which is what I was aiming for.
My problem is that in my website I have 2 different forms in 2 different pages, and when I get a Lead event in facebook it could be from any one of the forms which really distort the data.
My question is: is it possible to make a capi connection with wix and get 2 different leads in the events manager?
If not, what would you recommend for a solution?

Tag:-

Only one comment.

  1. Md

    👋 Hello Guy, Yes, you can track two different Lead events using Meta's CAPI by differentiating the data from the two forms through Google Tag Manager (e.g., form_type). This way, Facebook will treat the two different forms as separate events, and you’ll be able to analyze them individually in your Events Manager.
    How you can setup Lead event when you use Google Tag Manager, you can effectively track and send two unique Lead events to Facebook based on which form was submitted (like Contact Form or Sign-Up Form). You can capture custom data (like form type and user email) and send it to Facebook both via the Pixel and the server-side Conversions API.
    First of create two variables 1.
    `
    function() {
    var formType = document.querySelector('form.contact-form');
    return formType ? 'contact_form' : '';
    }
    ` 2.
    ```` function() { var formType = document.querySelector('form.signup-form'); return formType ? 'signup_form' : ''; }
    `

    Then create Tags for your lead event you can use app or custom HTML in Google Tag Manager
    ` ````
    If you need anything help click here and DM me

Add a new comment.