
Originally Posted by
Design75
Looking at the source of your site the code stops after : "<!-- End Google Tag Manager -->"
So it looks like an error.
Check your log files for the error
Thanks for your patience
The errors shown in my log files are all of the form
Code:
[24-May-2018 13:31:11 Europe/Zurich] PHP Warning: require(includes/templates/template_default/google_analytics/google_remarketing.php): failed to open stream: No such file or directory in.......
PHP Fatal error: require(): Failed opening required 'includes/templates/template_default/google_analytics/google_remarketing.php' (include_path='.:/usr/share/pear:/usr/share/php') in
I looked in my tpl_main_page.php file (this is the only file containing Google Tag Manager) starting at Google Tag Manager and it looks like this
Code:
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-WL8TRM"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','[XXXXXXX]');</script>
<!-- End Google Tag Manager -->
<?php /* add any end-of-page code via an observer class */
$zco_notifier->notify('NOTIFY_FOOTER_END', $current_page);
?>
<?php // Google Analytics Dynamic Remarketing code
require($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'google_analytics') . '/google_remarketing.php');
?>
<!--BOF cookie control script-->
<?php if (COOKIE_CONTROL_STATUS == 'true'){?>
<?php require($template->get_template_dir('tpl_cookie_control.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_cookie_control.php');?>
<?php } ?>
<!--EOF cookie control script-->
</body>