簡體   English   中英

注銷后如何更改我的帳戶菜單Woocommerce的鏈接

[英]When Logged Out how to change the link of my account menu Woocommerce

如果有人從WordPress Woocommerce注銷,然后有人可以建議我,然后單擊我的帳戶以更改鏈接?

我希望不要將登錄注冊頁面轉到其他頁面,而是僅當用戶注銷時才退出用戶

謝謝

使用以下代碼將起作用:

function iconic_account_menu_items( $items ) {
     if ( !is_user_logged_in() ) {
        $items['information'] = __( 'your_page_name', 'page' );
     }
        return $items;

    }

    add_filter( 'woocommerce_account_menu_items', 'iconic_account_menu_items', 10, 1 );

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM