Here’s the reason that v6.3.4 is not working for me. Filtering the content from within the wp_head hook does not work. Here is that code from ssba_buttons.php
function ssba_add_button_filter() {
$arrSettings = get_ssba_settings();
add_filter( ‘the_content’, ‘show_share_buttons’, (int) $arrSettings[‘ssba_content_priority’] );
}
add_action( ‘wp_head’, ‘ssba_add_button_filter’, 99 );
I found that it works if i add the content filter without using the wp_head hook, as follows :
add_filter( ‘the_content’, ‘show_share_buttons’, (int) get_ssba_settings()[‘ssba_content_priority’] );