Continue reading Infinite Scroll from Jetpack

Infinite Scroll from Jetpack

Jetpack has Infinite Scroll, which is a pretty cool feature, but unfortunately doesn’t work with Relevanssi on search results pages. Infinite Scroll uses WP_Query to get more posts, and that isn’t compatible with Relevanssi. I’m not aware of a solution that would allow Infinite Scroll to work with Relevanssi. There isn’t enough room for customization…

Read more Infinite Scroll from Jetpack 0 Comment on Infinite Scroll from Jetpack
Continue reading Issues with post order plugins

Issues with post order plugins

…then you may be using a plugin that affects the post order. One example is Intuitive Custom Post Order, which reorders posts – and the Relevanssi results. The fix is simple, though. Add this function to your site: add_filter( ‘relevanssi_orderby’, function ( $orderby ) { return array( ‘relevance‘ => ‘desc’ );…If you’re getting low-quality results and the weight settings are not affecting the results, the first thing to check is to see if your results are coming from Relevanssi in the first place. That’s easy to check: disable Relevanssi and see if the results change. If the results change, they’re……coming from Relevanssi. If the results don’t change, see this debugging info. If Relevanssi is powering the search and the results still won’t change when you change the weights (change the weights a lot – for example, if you want to adjust the title weights, set the title weight to 1000),…

Read more Issues with post order plugins 0 Comment on Issues with post order plugins
Continue reading Yoast Local SEO

Yoast Local SEO

Yoast Local SEO plugin breaks Relevanssi search. It enhances the search by adding meta queries. Unfortunately they don’t work with Relevanssi. The fix is simple, though. Add this to the theme functions.php: add_filter( ‘relevanssi_modify_wp_query‘, ‘rlv_meta_fix’, 99 ); function rlv_meta_fix( $q ) { $q->set( ‘meta_query’, array() ); return $q; } This…

Read more Yoast Local SEO 14 Comments on Yoast Local SEO
Continue reading Co-authors Plus

Co-authors Plus

Co-Authors Plus is a neat plugin that makes it possible to have multiple authors for one post in WordPress. This is a useful feature WordPress doesn’t yet support. Relevanssi only picks up the first author from the post, but making Relevanssi find the other authors as well is very simple,……thanks to good design choices made by the Co-authors Plus developers. The plugin stores the extra authors in a custom taxonomy. Indexing custom taxonomies is elementary for Relevanssi. In order to make Relevanssi index all authors for posts, simply add “author” to the “Choose taxonomies to index” option and re-index….

Read more Co-authors Plus 29 Comments on Co-authors Plus