Google tag manager event not showing Facebook meta data information

38 Views Asked by At

Facebook pixel not showing metadata information on my custom website(php Laravel). I already created an event from Google Tag Manager and I want to collect information via that event.

here is my code example below:

 <button id="exampleButton" type="submit">Buy Now</button>
<script>
    document.getElementById('exampleButton').addEventListener('click', function() {
        gtag("event", "AddToCart", {
        'event_category': 'Engagement',
        'event_label': 'event label',
     });
 });
</script>
0

There are 0 best solutions below