Hi,
thx for reply. I think I did not express myself well. I would like to use google analytics, thats not the question. I would like to implement the following wihtin in the analytics code:
_gaq.push(['_gat._anonymizeIp']);
So the ip wont be tracked anymore (in germany you have to).
The whole script could be something like this:
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-11...']);
_gaq.push(['_gat._forceSSL']);
_gaq.push(['_gat._anonymizeIp']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'https://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
Hope it is clear now.
Best regards,
Chekki