Hello,
1. Can get what you want to remove actually … the “social bookmarking buttons” or the “social sharing buttons”. You can check the “templates box”. Each button is represented with a “button code”. Just remove that code that’s all.
2. Use the latest version of WP Socializer (v2.4.7)
– Open wp-socializer.php
– Replace lines,
add_filter(‘the_content’, array($wpsr_content_op, ‘output’));
add_filter(‘the_excerpt’, array($wpsr_excerpt_op, ‘output’));
with
add_filter(‘the_content’, array($wpsr_content_op, ‘output’), 1);
add_filter(‘the_excerpt’, array($wpsr_excerpt_op, ‘output’), 1);
Thank you.