Okay
  Public Ticket #2725592
Login redirect
Closed

Comments

  •  1
    Ben Hamman started the conversation

    Hi,

    Currently, when a user logins in through the force login screen they are directed to their account dashboard, is there a way to direct them to the homepage of the website instead?

    Thanks,

    Ben

  •  2,619
    WebWizards replied

    Hi Ben,

    I believe you can do it by adding this code snippet to your site:

    add_action('woocommerce_login_redirect', function($url){
        $url = get_home_url();
        // for shop url use $url = get_permalink( wc_get_page_id( 'shop' ) )
        return $url;
    }
    

    Kind regards,

    Stefan

  •  1
    Ben Hamman replied

    This has worked perfectly.

    Thank you, Stefan!

  •   Ben Hamman replied privately
  •   WebWizards replied privately