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 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序