Hide my account menu on certain pages in WooCommerce

Hide my account menu on certain pages in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

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

Example.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.