In the standard addthis account (I don't have wordpress) there is no advanced tab, or a place to disable the "track address bar shares" parameter.
Is there any way to remove that from the email link? Or is there any other way to remove this hash tag? It's disrupting our script and deeming the link useless, since it forwards to a dead page on my website.
This is the only answer I can see anywhere, and it doesn't apply to me, since I don't have an "advanced" tab anywhere...
--- To disable that you need to uncheck the "track address bar shares" box on the advanced tab of the AddThis plugin settings page. http://i.imgur.com/dzHkq.png ---
Thanks!
-Ross
To remove it from your site if you're not using our WordPress plugin then you'll need to add this code just before the </body> tag:
<script type="text/javascript">
if (typeof addthis_config !== "undefined") {
addthis_config.data_track_addressbar = false
} else {
var addthis_config = {
data_track_addressbar: false
};
}
</script>
This question is closed to new answers.