Remove the advanced settings tab in WooCommerce

Remove the advanced settings tab in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'woocommerce_settings_tabs_array', 'remove_advanced_tab', 100 );
function remove_advanced_tab( $tabs ) {
    unset( $tabs['advanced'] );
    return $tabs;
}

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