yeah, I know you want to fix your issue… I was more referring to what you were doing as to removing a filter…
I am only guess that you want to remove the potential second use of the filter the_content that Andy mentioned… and no, if you want to add a filter usage, it would be in the theme, not the plugin… we use the filter, but then it calls our routine… if you are trying to do something different, then please explain…
What I was asking you to do is to search through the wp theme you are using for any apply_filters() function calls and see if there were any for the filter the_content… if so, you would see what the callback they were using was…
but I am also wondering if Any was really saying that your sp theme was actually calling the wp function the_content() twice vs the filter… in that case, you would want to search your theme for that function call the_content() and see where its done… since you did not find a second one, I was wonder if perhaps it was done via a filter vs a direct call…
for example, we do:
add_filter(‘the_content’, ‘sp_render_forum’, 1);
so our callback is sp_render_forum… so look for something similar in your wp theme and lets see if your theme is keying and outputting data based on that filter since you cannot find multiple calls to the_content()…