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条)

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog