duansha7453 2018-08-16 22:23
浏览 92
已采纳

将登录用户从特定页面重定向到Woocommerce我的帐户页面

In Woocommerce I am trying to find a solution for checking if a user is logged in on custom page and if so, redirect user to "My Account" page.

Any help on this is appreciated.

  • 写回答

3条回答 默认 最新

  • doulangpeng3933 2018-08-16 23:47
    关注

    Try the following, where you will replace 'some-page' by your real page ID, slug or name. The code will redirect for a defined specific page logged in users to the my account page:

    add_action('template_redirect', 'specific_logged_in_redirect');
    function specific_logged_in_redirect() {
        if ( is_page('some-page') && is_user_logged_in() ) {
            wp_redirect( get_permalink( get_option('woocommerce_myaccount_page_id') ) );
            exit();
        }
    }
    

    Code goes in function.php file of your active child theme (or active theme). Tested and works.


    For 2 pages you will use: is_page( array( 'some-page', 'some-other' ) )

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?