Site logo

Archived topic

How to remove the sub title of the product tabs

3 replies · Started by Hana on June 8, 2022

Viewing posts 1–4 of 4

Hello, How to remove the sub title of the product tabs
please check screenshot
aditinal-title

Hi Hana,

Here’s a PHP snippet you may try adding:

add_filter('woocommerce_product_additional_information_heading', 'remove_product_additional_information_heading');
 
function remove_product_additional_information_heading() {
    echo '';
}

Adding PHP reference: https://docs.generatepress.com/article/adding-php/#code-snippets

Kindly let us know how it goes.

Thats great!
Thank you

You’re welcome Hana!

This archived topic is closed to new replies.