1
votes

addthis widget doesn't seem to integrate well with Facebook when it comes to customizing its share message.

When I try to set title and description via addthis.update, i.e:

addthis.update('share', 'description', "Content to be shared" ); 

Everything works perfectly with Twitter, but Facebook is a no show, neither the template nor description/ title are being set. Using addthis:description inline attributes doesn't work either.

Also tried using meta tags without success, as suggested on Addthis Facebook description and title

Did anyone manage to sucessfully customize sharing with Facebook?

1
Can you provide a link to your page where it's not working?Sol

1 Answers

1
votes

Try this:

for(var i = 0; i < addthis.links.length; i++){
   addthis.links[i].share.description = "new description";
}

That's raw access to addthis share objects properties.