• Resolved siteXmedia

    (@sitexmedia)


    On a product page I have 4 tabs created

    Description | Brand | Additional information | Reviews

    On each they have the same wording at the beginning of the Tab as a title, which just seems like a duplicate.

    I removed the Description & Additional information words by adding this code to the functions.php of the child theme

    add_filter( ‘woocommerce_product_description_heading’, ‘remove_product_description_heading’ );
    function remove_product_description_heading() {
    return ”;
    }

    add_filter( ‘woocommerce_product_additional_information_heading’, ‘remove_product_additional_information_heading’ );
    function remove_product_additional_information_heading() {
    return ”;
    }
    Can anybody let me know how to remove the Brand title

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter siteXmedia

    (@sitexmedia)

    Sorry that may read wrong, I do not want to remove the word Brand from the Tab, just inside the Tab.

    Plugin Contributor titodevera

    (@titodevera)

    Hi siteXmedia.

    You can hide it with CSS:

    #tab-pwb_tab h2{
      display: none!important;
    }

    I will consider include a filter hook for editing/removing this title in the next plugin release.

    Thanks ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove BRAND on tab’ is closed to new replies.