• Resolved pl.xrisa

    (@xrisa30)


    Hi,

    I used the code below to unset the dashboard tab in my account page –>

    add_filter ( ‘woocommerce_account_menu_items’, ‘remove_my_account_items’ );
    function remove_my_account_items( $menu_links ){
    unset( $menu_links[‘dashboard’] );
    return $menu_links;
    }

    but I can still see the content of this tab (From your account dashboard you can view……), when I go to my account page.

    I want redirect the user to their Orders screen.
    where I can find the code for this?

    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Account Page Redirect’ is closed to new replies.