I love this module!
What I would really like is if I could customize the default message when someone uses twitter. So that it says something like:
Check out the video (node) at (url) by @ModsUnraveled!
Instead of the current "(node) | (site) (url) via @AddToAny"
Is there any chance of this being added, so that I don't have to muck around in code?
Comments
Comment #1
micropat commentedThanks! :)
Actually you can already customize the Twitter message by pasting the following code into the Additional Options box (at the bottom of the config page: admin/config/system/addtoany).
It's a little bit of code mucking, but no so bad. :)
Comment #2
bjlewis2 commentedExcellent! Thanks so much!
Comment #3
scotwith1tSorry to reopen, but this doesn't seem to work in v. 6.x-3.4. I've added the above code (with our Twitter ID of course) to that area and it doesn't do anything...

Comment #4
scotwith1there's the code i've got in the Additional options box:
Comment #5
erikphanson commentedSome per content type customization would really be awesome. Is this possible now in code?
Comment #6
micropat commented@scotself You had an error in your JavaScript syntax. This is what you want:
@erikphanson AddToAny JavaScript events would be your best workaround for that right now. See the "Modifying the share" section, then for example:
if (share_data.service = 'twitter') { /* Change share_data.title if also a specific content type */ }Comment #7
micropat commented