Subha Kalyan
Subha Kalyan

Reputation: 1

How to remove wordpress Short description tab in single product page in wordpress?

How to remove Short description tab in single product page in word press?

I have 3 tabs like

1.product description
2.Short description
3.Reviews

I want to remove short description tab if that is empty.

Upvotes: 0

Views: 3357

Answers (2)

Giorgio25b
Giorgio25b

Reputation: 416

The short description tab is called product_summary; use the snippet below in your functions.php

remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );

function woocommerce_template_single_excerpt() {
        return;
}

Please note that not all the themes are rendering product_summary in a tab, for some themes the snippet should be tweaked accordingly.

Upvotes: 2

jjj
jjj

Reputation: 995

Add this in your functions.php theme file:

add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );

function woo_remove_product_tabs( $tabs ) {

    unset( $tabs['description'] );      

    return $tabs;

}

Upvotes: 0

Related Questions