Viewing 1 replies (of 1 total)
  • If you need the users no to open the back end, paste that in your child theme or plugin specific. Change example for the page you need.

    /* This code adapted from: Registration Redirect */
    
    add_filter( 'registration_redirect', 'ckc_registration_redirect' );
    function ckc_registration_redirect() {
        // Change this to the url to your custom page. return home_url( '/example' )
        return home_url('/example');
    }
    
    /* This code adapted from: Login Redirect */
    
    add_filter( 'login_redirect', 'ckc_login_redirect' );
    function ckc_login_redirect() {
        // Change this to the url to your custom page. return home_url( '/example' )
        return home_url();
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Frontend-edit-profile plugin not working for frontend’ is closed to new replies.