I've just contacted addthis and they responded as follow
Quote:
I think the problem is that you're writing AddThis to the page using JavaScript rather than using a standard <script> tag. We look for the profile ID in that tag, so we're not picking it up if you put it there. So you'll have to put it into your addthis_config variable. Here's a snippet you can add to your page to do it:
<script type="text/javascript">
if (typeof addthis_config !== "undefined") {
addthis_config.pub = 'ra-xxxxxxxx'
} else {
var addthis_config = {
pub: 'ra-xxxxxxxx'
};
}
</script>
|
I know it's a free mod but any chance of incorporating what addthis people are suggesting?
Thank You