Hi, about the new GDPR function, there is an unclear aspect and that can create many problems.
Enfold provides some shortcodes (Mailchimp, Analytics, etc), but if my site uses the Pixel Facebook tracking code (script that can be inserted in the Google Services section), how to enable this module, or how to create a new one, so that the user can or not disable monitoring?
I can not find documentation on this.
Hey macrunner,
Please update on our latest version, we have fixed all those ;)
Best regards,
Basilis
but I have already installed the latest version 4.4.
the problem is that it is not possible to add the Facebook pixel tracking block.
Hi macrunner,
You can add the code to your functions php using the code below:
function add_fb_pixel_tracking(){
?>
<script>
//your code here
</script>
<?php
}
add_action('wp_head', 'add_fb_pixel_tracking');
If you need further assistance please let us know.
Best regards,
Victoria