Analytics adding AnonimizeIp() by default in 2.3.9.3?

A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.

This thread is closed to new posts. You must sign in to post in the forums.
10/23/2012 4:15:01 PM
Gravatar
Total Posts 6

Analytics adding AnonimizeIp() by default in 2.3.9.3?

Hello all,

I recently created a new skin in MP 2.3.9.3 based off of the bootstrap skin.  The analytics control seems set the 'anonymizeIp' flag despite my attempt to disable it in the layout.master.  Here is the control code in my layout.master:

<portal:AnalyticsAsyncTopScript id="analyticsTop" runat="server" AnonymizeIp="false" />

I added the AnonymizeIp="fase" in an attempt to solve the problem.  Here is the JS the control is outputting: 

<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount','UA-000000-0']);
_gaq.push(['_gat._anonymizeIp']);
_gaq.push(['_setCustomVar', 1, 'member-type', 'admin', 1]);_gaq.push(['_setCustomVar', 2, 'section', 'blog', 3]); _gaq.push(['_trackPageview']);
_gaq.push(['_trackPageLoadTime']);
</script>

Any clues how disable the IP anonymization would be greatly appreciated!

10/24/2012 11:29:27 AM
Gravatar
Total Posts 18439

Re: Analytics adding AnonimizeIp() by default in 2.3.9.3?

Setting it to false in layout.master should work.

<portal:AnalyticsAsyncTopScript ID="analyticsTop" runat="server" AnonymizeIp="false" />

It works for me when I try it. Make sure you are editing the correct file.

Best,

Joe

10/24/2012 12:18:07 PM
Gravatar
Total Posts 6

Re: Analytics adding AnonimizeIp() by default in 2.3.9.3?

Thanks for the reply Joe.  It turned out I was having an SVN issue and my changes weren't propagating.  The attribute changed the behavior as expected.  

You must sign in to post in the forums. This thread is closed to new posts.