mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://stackoverflow.com/questions/69607327/how-to-hide-my-account-menu-on-certain-pages-in-woocommerce/69612446
8 lines
403 B
Text
8 lines
403 B
Text
function action_woocommerce_account_navigation () {
|
|
// Detect the WC Dashboard page, and if NOT
|
|
if ( is_user_logged_in() && is_account_page() && is_wc_endpoint_url() ) {
|
|
// Remove navigation
|
|
remove_action( 'woocommerce_account_navigation', 'woocommerce_account_navigation' );
|
|
}
|
|
}
|
|
add_action( 'woocommerce_account_navigation', 'action_woocommerce_account_navigation', 1, 0 );
|