BBPress Topic Not Showing
-
With the plugin activated BBPress topics don’t show, I believe this is down to the way The SEO Framework filters out pages to be removed from the WordPress search (this is a good feature and saves a lot of manual messing about).
I had this issue before when I manually filtered out pages from search and removing the filter fixed the issue like deactivating the plugin does, there is a bit of an explanation here:
https://bbpress.org/forums/topic/topics-not-appearing-in-forum/
I used this replacement code to do the filter:
function jp_search_filter( $query ) { if ( $query->is_search && $query->is_main_query() ) { $query->set( 'post__not_in', array( 372, 364, 370, 224, 362 ) ); } } add_action( 'pre_get_posts', 'jp_search_filter' );
and for whatever reason pages were filtered and BBPress replys worked but obviously I removed the working filter as your plugin is now doing that job.
- The topic ‘BBPress Topic Not Showing’ is closed to new replies.