Well, that’s what your theme support gave you, i simply made sure that all the post types involved in bbPress are taking in account (see #3935007).
When i asked you if the sharebox was inserted using a hook, that’s because it’s the only way for me to remove my filters….
The last way to have your sharebox and the support mention before the title of the topic is to try something like this in your sharebox portion of code :
<?php
remove_filter('the_title', 'bpbbpst_bbpress_change_topic_title', 99, 2 );?>
<div class="hide-responsive">
<?php oswc_get_template_part('sharebox');// show the sharebox ?></div>
<?php
add_filter('the_title', 'bpbbpst_bbpress_change_topic_title', 99, 2 );
?>