Not search results for BBpress topics/replies
-
Hi, thanks for this great plugin!
Relevanssi seems working fine to search accross my website for blogs posts from all categories.
My problem is about the BBpress search features. I have done everything accordingly to the https://www.relevanssi.com/knowledge-base/relevanssi-bbpress/ tutorial.
Also I have made topics and replies of BBpress “public” with this code added to my child theme function file:function my_add_bbp_to_search( $post_type ) { $post_type['exclude_from_search'] = false; return $post_type; } add_filter( 'bbp_register_forum_post_type', 'my_add_bbp_to_search' ); add_filter( 'bbp_register_topic_post_type', 'my_add_bbp_to_search' ); add_filter( 'bbp_register_reply_post_type', 'my_add_bbp_to_search' );
In my database, I can see that topics and replies terms are well indexed by Relevanssi in the “relevanssi” table : DOC is pointing to the forum ID post correctly that contained the indexed word which appears only once on my website.
But my WP seach dont return anything in my seach page about any forums topics or replies…
Also there is no “query_posts()” in my search.php page.
Is there something that I have done wrong? Thanks in advance for your kind answers.
- The topic ‘Not search results for BBpress topics/replies’ is closed to new replies.