On the homepage of my site, Actinic adds in "acatalog/" to my google analytics script, which sadly breaks it. I think this may be something to do with the BaseHref tag perhaps, but I'm not sure how I can stop it inserting "acatalog/" into the script.
The code appears correctly on all the other pages which are in the acatalog folder as below:
and appears like this on the homepage:
Any ideas on solving this problem?
Thanks in advance
The code appears correctly on all the other pages which are in the acatalog folder as below:
Code:
<script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script>
Code:
<script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "acatalog/google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script>
Thanks in advance
Comment