Hello @LWLsrl,
Thanks for writing in!
I can see that you are using a Child theme and you added this PHP code that broke your page HTML structure:
add_filter('body_class', 'tmi_snippet', 10000);
function tmi_snippet( $classe)
{
$snippet = <<<'TMI'
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WBSBPPF"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
TMI;
$classe[] = '">' . $snippet . '<br style="display:none';
return $classe;
}
Resulting into an invalid HTML output:
Be advised that custom PHP coding is beyond the scope of our support under our Support Policy. If you are unfamiliar with code and resolving potential conflicts, you may select our One service for further assistance.
Please remove that PHP code block first or at least switch the parent theme and check the site again for the mentioned issues above. Google Site Kit plugin can be used in your site so that you will no longer have to use custom PHP code in inserting the Google Tag code.
Best Regards.