Oh, well, I found my own solution.
That is to add a filter for the hook “bbp_topic_pagination” and alter the base url.
Steven
Hi,
I found my own solution to this requirement.
All I need to do is to add a custom filter to this WordPress hook: posts_orderby_request.
Steven
Well, finally it turned out to me that the wp_posts_fulltext_search table was a custom table that the former dev of the site added (not a WordPress native). 🙂 I’m good to go now.
After digging into the source code of search, I found that it uses SQL’s LIKE for searching. So…no fulltext search.
I searched on the Web and it looks like Sphinx can give me a solution, though it requires extra setup and configuration. MySQL 5.6.4 will add supports of fulltext search for InnoDB as well.
Thanks Stephen.
For the bbPress 2.3 search feature, my question is whether it supports fulltext search and how it creates fulltext index. I also need to filter the search results by user-selected parent forums which should require a custom query.