当注销时如何更改我的帐户菜单Woocommerce的链接

Can someone suggest me if someone logged out from WordPress Woocommerce then click on my account how to change the link?

I want instead of going to the login register page to the other page but only when the user logged out if user login it is fine

Thanks

Use below code will work :

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