There was an interesting support question:
I have website with logged-in users as well as non-logged-in users.
The logged-in user should be able to search through everything on the website, but the non-logged-in users should only be able to search the user profiles.
Is it at all possible to differentiate the searches like this?
The answer is, of course, yes, and it’s really quite simple, too. There’s no need to build two separate searches on the site. Every post that Relevanssi shows to users passes through the relevanssi_post_ok
filter which determines whether the current user is allowed to see the post. This filter can be used to build this functionality. The code looks like this:
add_filter( 'relevanssi_post_ok', 'rlv_limit_users', 11, 2 ); function rlv_limit_users( $show, $post_id ) { if ( ! is_user_logged_in() ) { $post = relevanssi_premium_get_post( $post_id, get_current_blog_id() ); if ( 'user' !== $post->post_type ) { $show = false; } } return $show; }
Add this to your site. If the user is logged in (is_user_logged_in()
returns true
), nothing is done, and the posts are shown to the user as usual. If the user is not logged in, Relevanssi then fetches the post object using relevanssi_premium_get_post()
(this is necessary instead of regular get_post()
, because user profiles are involved) and if the post type is not set to user
, the function returns false
and the post is not shown to the user.
The code above requires Relevanssi Premium (and only makes sense with it, because you can’t search user profiles without Premium). If you want to apply this to other post types, this version is compatible with the free Relevanssi:
add_filter( 'relevanssi_post_ok', 'rlv_limit_post_types', 11, 2 ); function rlv_limit_post_types( $show, $post_id ) { if ( ! is_user_logged_in() ) { $post = get_post( $post_id ); if ( 'your_custom_post_type' !== $post->post_type ) { $show = false; } } return $show; }
This works great for me except, if logged out and searching the ‘off-limits’ post type, I get a completely blank screen instead of a “No results found” page.
This only works with Relevanssi Premium. I’ve added an example that works without Premium.
Perfect. Thank you!