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
Continue reading Adjusting search throttle

Adjusting search throttle

If Relevanssi Premium causes out-of-memory problems, make sure you have the “Throttle searches” option checked. However, if that doesn’t work and you’re still getting out of memory issues, you can try making the throttle tighter. The limit can be adjusted by adding this line to your site: If necessary, you can adjust the value (250)…

Read more Adjusting search throttle 7 Comments on Adjusting search throttle
Continue reading WP e-Commerce

WP e-Commerce

WP e-Commerce is a popular shopping cart plugin for WordPress. This code by Alexander Gieg, added to functions.php for example, makes Relevanssi work better with WP e-Commerce. add_filter( ‘relevanssi_excerpt_content’, ‘wpsc_product_excerpt’, 10, 3 ); function wpsc_product_excerpt( $content, $post, $query ) { if ( ‘wpsc-product’ === relevanssi_get_post_type( $post->ID ) ) { $content…

Read more WP e-Commerce 14 Comments on WP e-Commerce