Posted on

Restricting the search for non-logged-in users

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;
}

3 comments Restricting the search for non-logged-in users

  1. 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.

Leave a Reply

Are you a Relevanssi Premium customer looking for support? Please use the Premium support form.

Your email address will not be published. Required fields are marked *