Forum Replies Created
-
In reply to: Topic search result pagination issue
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
In reply to: Custom sort replies in a topicHi,
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
In reply to: bbPress2 fulltext searchWell, 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.
In reply to: bbPress2 fulltext searchAfter 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.
In reply to: bbPress2 fulltext searchThanks 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.