Hey There,
My addthis buttons are appending a hash to the end of my urls when sharing:
http://zinnedproject.org/posts/13826#.UAhJOpbJxqM.facebook
I have even included this prior to /body:
<script type="text/javascript">
var addthis_config = addthis_config||{};
addthis_config.data_track_addressbar = false;
</script>
I can't make these hashes go away... and they unfortunately really mess with my canonical urls.
Help?
That code is our click tracking, not the address bar. To disable that modify your code like this:
<script type="text/javascript">
var addthis_config = addthis_config||{};
addthis_config.data_track_addressbar = false;
addthis_config.data_track_clickback = false;
</script>
This question is closed to new answers.