Woocommerce redirect after registration

后端 未结 6 525
盖世英雄少女心
盖世英雄少女心 2020-12-16 07:41

I am trying to redirect user after Woocommerce registration. I have tried everything and it is not working.

I have tried some methods found on internet but they did

6条回答
  •  伪装坚强ぢ
    2020-12-16 08:19

    The accepted answer didn’t work for me. What worked for me was this:

    // After registration, logout the user and redirect to home page
    function custom_registration_redirect() {
        wp_logout();
        return home_url('/');
    }
    add_action('woocommerce_registration_redirect', 'custom_registration_redirect', 2);
    

提交回复
热议问题