I want to send a parameter of advanced match of Facebook pixels, when I send using the website form.
In the <head> of the site, Pageview code is described as common parts.
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', 'xxxx...');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=xxxx....&ev=PageView&noscript=1"
/></noscript>
When sending the form, I attempted to execute the Viewcontent code in the callback, but a duplicate ID error occurred.
fbq('init', 'xxxx....', {
'em': xxx,
'fn': xxx,
'ln': xxx,
'ph': xxx,
'ge': xxx,
'ct': xxx,
'st': xxx,
'zp': xxx,
});
fbq('track', 'ViewContent');
Can I send parameters to the same ID while keeping the common code in <head>?
Comments
Post a Comment