Skip to:
Content
Pages
Categories
Search
Top
Bottom
  • @marialka

    Put this function in your theme/functions.php or plugins/bp-custom.php
    And change ‘members’ to the slug of the page you want.
    function custom_login_redirect_to($user_login, $user) {
    bp_core_redirect( get_option('siteurl') . "/members/" );
    }
    add_action('wp_login', 'custom_login_redirect_to', 10, 2);

  • @marialka
    You could try adding something like this to bp-custom.php :
    function bphelp_logged_in_visitor_redirect() {
    global $bp;
    if(is_user_logged_in()) {
    wp_redirect( get_option('siteurl') . '/activity' );
    }
    }
    add_filter('get_header','bphelp_logged_in_visitor_redirect',1);

    Just change the line:
    wp_redirect( get_option('siteurl') . '/activity'…
    [Read more]

Skip to toolbar