I'd like to request that the administrator be able to create a "default ordering" and/or be able to remove specific services from the AddToAny widget. My understanding is that the Smartness of AddToAny is that it displays buttons/services based on the users recent behavior (i.e. the services they used most). However, since some people only use 2 or 3 services regularly and some don't use any at all, I'd like some control over the order that the "other" services display (i.e. ones they don't use or that get display when someone hasn't used any).
If this is already present and I'm just missing something, would love to know!
Comments
Comment #1
micropat commentedYep, you can prioritize services:
http://share.lockerz.com/buttons/customize/prioritize_services
For instance, place the following code in your Additional Options box on the module's Configure page:
a2a_config.prioritize = ["stumbleupon", "amazon_wish_list", "reddit"];Most service "codes " can be found here:
http://share.lockerz.com/services/
Comment #2
micropat commentedAs far as removal of a service, you can do that with CSS code (you'll have to find somewhere to place the code, i.e. in your theme's style.css file).
Example CSS code to remove Facebook from the menu of services:
#a2apage_facebook { display:none !important; }Comment #3
MacaroniDuck commentedExcellent information. Thank you!