BuddyBoss Home – Web Support Forums Themes BuddyBoss theme Start page if not logged-in users

Viewing 4 posts - 1 through 4 (of 4 total)
  • Question

    #56129
    @377095

    How to redirect to start page if not logged-in users?

    Answers

    #56176

    Anonymous
    @

    Hi @377095, you can use following function , Put this in your child themes functions.php

    Change slug and the redirect url as per your homepage slug and landing page

    
    add_action( 'template_redirect', 'redirect_to_specific_page' );
    
    function redirect_to_specific_page() {
    
    if ( is_page('slug') && ! is_user_logged_in() ) {
    
    wp_redirect( 'http://www.example.dev/your-page/', 301 ); 
      exit;
        }
    }
    

    Regards
    Varun Dubey

    #56208
    @377095

    Thank you! It worked perfectly

    #56336

    Anonymous
    @

    🙂 Great I will close this topic, feel free to create new for any further queries.
    Regards
    Varun Dubey

Viewing 4 posts - 1 through 4 (of 4 total)
  • The question ‘Start page if not logged-in users’ is closed to new replies.