Your all in one share buttons plugin. Add a floating bar with share buttons to your blog. Just like Mashable!
If you have any questions, we'd love to hear from you. Email us: diggdigg@bufferapp.com
You can insert the following within the HTML editor anywhere when editing a post and it will disable Digg Digg on that page.
<!-- Digg Digg Disabled -->
Another method to disable the bar on a particular page add the following few lines to your themes functions.php file, changing the conditional tags to ones that fit your requirement.
function dd_exclude_from_pages() {
if(is_page(1)) {
remove_filter('the_excerpt', 'dd_hook_wp_content');
remove_filter('the_content', 'dd_hook_wp_content');
}
}
add_action('template_redirect', 'dd_exclude_from_pages');
More details here... http://www.eugenoprea.com/code-snippets/exclude-diggdigg-from-specific-pages/
To add the bar to a particular page add the following few lines to your themes functions.php file, changing the conditional tags to ones that fit your requirement.
if(is_page('page-slug-1') || is_page('page-slug-2')) {
add_filter('the_excerpt', 'dd_hook_wp_content');
add_filter('the_content', 'dd_hook_wp_content');
}
In both Normal Display and Floating Display settings pages you can change the weight of a sharer. The highest weighted sharer will be displayed first, the lowest weighted sharer will be displayed last.
Requires: 2.3 or higher
Compatible up to: 3.5.1
Last Updated: 2013-5-19
Downloads: 675,479
5 of 35 support threads in the last two months have been resolved.
Got something to say? Need help?