Plugin Directory

Add to Any: Share/Bookmark/Email Button

How often is the list of services within the menu updated?

Constantly... and it's done automatically without having to upgrade.

Where can I choose which button and individual icons to display and other options?

Go to Settings > Share/Save Buttons.

Why isn't the drop-down menu appearing?

It's likely because your theme wasn't coded properly. Using the Theme Editor, make sure that the following piece of code is included in your theme's footer.php file just before the </body> line:

<?php wp_footer(); ?>

How can I move both the button and the individual icons to another area of my theme?

In the Theme Editor, place this code block where you want the button and individual icons to appear in your theme:

<?php echo '<ul class="addtoany_list">';
if( function_exists('ADDTOANY_SHARE_SAVE_ICONS') )
    ADDTOANY_SHARE_SAVE_ICONS( array("html_wrap_open" => "<li>", "html_wrap_close" => "</li>") );
if( function_exists('ADDTOANY_SHARE_SAVE_BUTTON') )
    ADDTOANY_SHARE_SAVE_BUTTON( array("html_wrap_open" => "<li>", "html_wrap_close" => "</li>") );
echo '</ul>'; ?>

How can I move just the button to another area of my theme?

Directions are located within the plugin's settings panel located in Settings > Share/Save Buttons under Button Placement. In the Theme Editor, you will place this line of code where you want the button to appear in your theme:

<?php if( function_exists('ADDTOANY_SHARE_SAVE_BUTTON') ) { ADDTOANY_SHARE_SAVE_BUTTON(); } ?>

How can I move just the individual icons to another area of my theme?

In the Theme Editor, place this line of code where you want the individual icons to appear in your theme (within an HTML list):

<?php echo '<ul class="addtoany_list">';
if( function_exists('ADDTOANY_SHARE_SAVE_ICONS') )
    ADDTOANY_SHARE_SAVE_ICONS( array("html_wrap_open" => "<li>", "html_wrap_close" => "</li>") );
echo '</ul>'; ?>

Or you can place the icons as individual links (without being wrapped in an HTML list):

<?php if( function_exists('ADDTOANY_SHARE_SAVE_ICONS') ) { ADDTOANY_SHARE_SAVE_ICONS(); } ?>

How can I add a new custom standalone service?

You can create a plugin or customize the following PHP sample code to add to your theme's function.php file:

function addtoany_add_services( $services ) {
  $services['google_example'] = array(
    'name' => 'Google Example',
    'icon_url' => 'http://www.google.com/favicon.ico',
    'icon_width' => 16,
    'icon_height' => 16,
    'href' => 'http://www.example.com/add?linkurl=A2A_LINKURL&amp;linkname=A2A_LINKNAME'
  );
  return $services;
}
add_filter('A2A_SHARE_SAVE_services', 'addtoany_add_services', 10, 1);

How can I force the button to appear in individual posts and pages?

If your button isn't already set up to appear (it is by default), type the following tag into the page or post that you want the button to appear in: <!--sharesave-->

How can I remove a button from individual posts and pages?

Type the following tag into the page or post that you do not want the button to appear in: <!--nosharesave-->

Why do embedded objects (like Flash) disappear when the menu is displayed?

This is done to overcome browser limitations that prevent the drop-down menu from displaying on top of intersecting embedded objects. If you would like to disable this, uncheck the Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed option on the plugin's settings page.

Download

FYI

Compatibility beta

Your Setup

Log in to vote.

The Consensus (6 reporting)

67%
100,1,1
100,1,1 100,1,1
100,1,1 100,1,1
100,1,1
100,4,4 100,1,1 100,1,1 100,1,1
100,12,12 100,4,4 100,1,1 100,3,3 100,1,1
67,6,4
50,2,1 100,3,3

Average Rating

5 stars
4 stars
3 stars
2 stars
1 star
(277 ratings)