Constantly... and it's done automatically without having to upgrade.
Go to Settings > Share/Save Buttons.
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(); ?>
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>'; ?>
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(); } ?>
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(); } ?>
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&linkname=A2A_LINKNAME'
);
return $services;
}
add_filter('A2A_SHARE_SAVE_services', 'addtoany_add_services', 10, 1);
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-->
Type the following tag into the page or post that you do not want the button to appear in: <!--nosharesave-->
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.




