Hey Kathryn,
Thank you for your input. Like you mentioned there are no reliable plugins that are either up to date or that insert the code the way Google wants to:
“Place it immediately after the opening <body> tag.”
I have read since I am using a Theme, correct me if I’m wrong, to insert the Google Tag Manager code within Functions.php file that belongs to Singl or whatever theme you are using.
That didn’t work at all, nobody should try it as it caused a serious error I could only fix by using my server and replacing the file manually, but I’ll add it below as an example:
// Add Google Tag Manager Code
// =============================================================================
function add_google_tag_manager_code(){
?>
<!– Insert Google Tage Code Here –>
<!– Insert Google Tage Code Here –>
<?php
}
add_action( ‘x_before_site_begin’, ‘add_google_tag_manager_code’ );
// End Add Google Tag Manager Code
// =============================================================================
I’m sure there’s a way.
Thanks again!