Home / eCommerce / Debloat your WooCommerce Tabs! Remove Default WooCommerce Tabs Amiru アミル さん
Duplicate Snippet

Embed Snippet on Your Site

Debloat your WooCommerce Tabs! Remove Default WooCommerce Tabs Amiru アミル さん

Remove Default WooCommerce Tabs
You can easily remove the default "Description," "Additional Information," and "Reviews" tabs from the single product page. Documented for the ease of use by Amiru アミル さん

Code Preview
php
<?php
/**
 * Remove default WooCommerce product data tabs. Amiru アミル さん
 */
function woo_remove_product_tabs( $tabs ) {
    // Remove the Description tab
    unset( $tabs['description'] );
    // Remove the Additional Information tab
    unset( $tabs['additional_information'] );
    // Remove the Reviews tab
    unset( $tabs['reviews'] );
    return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );

Comments

Add a Comment