When I try to share my home page using the tool, it creates a #.xxxxx after the url and this is breaking my page, here's the example url it creates "http://www.ckrinteractive.com/#.T2PZGHYNAb4.twitter", is there a way to resolve this problem?
There's likely a problem in your JavaScript on the page. While you debug it you can remove the click tracking parameter like this:
<script type="text/javascript">
if (typeof addthis_config !== "undefined") {
addthis_config.data_track_clickback = false
} else {
var addthis_config = {
data_track_clickback: false
};
}
</script>
This question is closed to new answers.