Hi – I’m following a tutorial in a social media course that says to put the Facebook pixel code in the Header section of the website where you’d put the Google Analytics Code. I can’t seem to find a Header window for code in the Enfold stuff – do I put it in the Google Analytics window or Quick CSS?
Thanks
Hi dominiquehurley!
Try adding this to your child theme functions.php file.
add_action('wp_head', 'enfold_extra_header_scripts');
function enfold_extra_header_scripts(){
?>
insert your script here
<?php
}
Best regards,
Elliott