WooCommerce : Customize Woocommerce Settings Tab.

Code

WooCommerce : Customize Woocommerce Settings Tab.

WooCommerce is the more powerful e-commerce plugin for WordPress.And what i love with WooCommerce is that there’s an API for nearly everything.There are almost Hooks and filters For Every Customization work.

Let’s talk about customizing Woocommerce Admin setting Tabs.To hide a specific Woocommerce setting tab or want to customize the Woocommerce setting tabs, not the entire sub-menu, but just a tab.For just Removing tabs we can use 'woocommerce_settings_tabs_array' Woocommerce Filter.

If you want to remove tabs instead of hiding them using CSS, then you can add the following to yours theme’s functions.php.

function RemoveWoocommerceSettingTabs( $value) {
// the tabs we want to hide
$tabToHide = array(
'tax' => 'Tax',
'checkout' => 'Checkout',
'products' => 'products',
'shipping' => 'Shipping',
'integration' => 'Integration',
'advanced' => 'Advanced',
'email' => 'Emails',
'api' => 'API',
'account' => 'Accounts',
);
// Tabs We want to hide
$value= array_diff_key($value, $tabToHide);
return $value;
}
add_filter('woocommerce_settings_tabs_array','RemoveWoocommerceSettingTabs');

In this code $value passed in Function is empty variable,because all WooCommerce tabs has priority equal to 20.
so we have to add higher priority than 20, so now filter is

add_filter('woocommerce_settings_tabs_array','RemoveWoocommerceSettingTabs', 200, 1);

But WE can still access the URLs of tabs .So This is just a way of removing the tabs Form html instead of hiding them. Means this filter just added benefit that tabs is not in HTML, so if we look at the source code, we would not find the elements.
So we have to modify the hook more.

function RemoveWoocommerceSettingTabs( $value) {
// the tabs we want to hide
$tabToHide= array(
'tax' => 'Tax',
'checkout' => 'Checkout',
'products' => 'products',
'shipping' => 'Shipping',
'integration' => 'Integration',
'advanced' => 'Advanced',
'email' => 'Emails',
'api' => 'API',
'account' => 'Accounts',
);
// Tabs We want to hide
$value= array_diff_key($value, $tabToHide);
foreach($tabToHide as $tabs => $title) {
add_action( 'woocommerce_settings_' . $array, 'RedirectFromTabPage');
}
return $value;
}
add_filter('woocommerce_settings_tabs_array','RemoveWoocommerceSettingTabs', 200, 1);

function RedirectFromTabPage() {
wp_redirect(get_admin_url().’/admin.php?page=wc-settings’);
exit;
}

I have added a foreach loop that goes through list of tabs we want to block and hooks it into the ‘woocommerce_settings_{$tab}’ action which is used to show settings pages of WooCommerce. Function 'RedirectFromTabPagefunction' is used for redirecting to custom URL.

Enjoy.

Shiv kumawat

Executive Director & CEO

"Shiv kumawat is the Executive Director and CEO of Eoxys It Solution LLP and the strategic mind behind the company"s growth. His expertise in operational efficiency and team leadership empowers his colleagues to excel and innovate.”

Latest Posts

AI Powered Event Planning Apps 2026 The Ultimate Interactive Guide

  AI Powered Event Planning Apps 2026 The Ultimate Interactive Guide Why Event Apps Need AI Now   Event planners…

Shafeeq Khan
January 23, 2026

The AI Tutoring Revolution 2026 Inside the $8.7B EdTech Unicorn That 10x’d Learning Outcomes

  The AI Tutoring Revolution 2026 Inside the $8.7B EdTech Unicorn That 10x’d Learning Outcomes Case Study:EduMatch AI From $0…

Shafeeq Khan
January 22, 2026

AI in Restaurant & Food Delivery Apps 2026 Smart Ordering, Dynamic Menus & Kitchen Automation

  AI in Restaurant & Food Delivery Apps 2026 Smart Ordering, Dynamic Menus & Kitchen Automation The Dawn of Intelligent…

Shafeeq Khan
January 21, 2026
, ,

Leave a Reply

Your email address will not be published. Required fields are marked *