A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.
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!
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
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.