You can insert
Google Analytics into your website by going to
Website Manager > Preferences tab > General tab > Content > Advance Settings >
Google Analytics Account Code
In this field, enter your Google Analytics code which looks "
UA-XXXXXX-X" and press Save.
Please note, Google will provide you with code that looks like the following, but you ONLY need to insert "
UA-XXXXXX-X" part ( not the full version of code like <script type="text/javasxript" > ...... )
eg.
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '
UA-XXXXXX-X']);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>