For this tutorial, we’ll be using the AddToAny Share Buttons plugin.
The first thing you need to do is to install and activate the plugin. For detailed instructions, see this page.
After you’ve installed the plugin, you need to go to Settings » AddToAny menu to configure plugin settings.
That's all.
The settings used on the demo:
If you want to have rounded buttons like in our demo, use this additional CSS code:
.addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service)>span {
padding: 5px;
border-radius: 50px;
}
Using another plugin
To modify the existing theme function you will have to use the "listimia_sharing" filter.
An example of this in use:
function My_Plugin_Function() {
if ( !is_single()) {
return;
}
// Add your sharing plugin code here
}
add_filter( 'listimia_sharing', 'My_Plugin_Function','', false);