Running into facebook tracking issue. When a user creates an account, I want to disable the FB tracking pixel.
When the landing page is broadcast, only 1/2 of the new users are tracked. Any ideas on where the problem is going?
pp.onNewUser = function(v,u) { // Set Facebook Tracking var fb_param = {}; fb_param.pixel_id = '43211230943123'; fb_param.value = '0.00'; fb_param.currency = 'USD'; var fpw = document.createElement('script'); fpw.async = true; fpw.src = '//connect.facebook.net/en_US/fp.js'; var ref = document.getElementsByTagName('script')[0]; ref.parentNode.insertBefore(fpw, ref); try { console.log('Account Created...'); } catch(ex) {} pp.aCN('step1a', 'hidden'); pp.rCN('step2b', 'hidden'); };
source share