Home Forums WoodMart support forum Removing "description" text from product page

Removing "description" text from product page

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #31142

    etinteractive
    Participant

    https://prnt.sc/hus42b

    I dont want to remove the entire Tab then all the text disappears, but I dont need the title/link.

    I have tried both of these methods.

    // Remove the Product Description Title
    add_filter('woocommerce_product_description_heading', 'hjs_product_description_heading');
    function hjs_product_description_heading() {
     return '';
    }
    add_filter('woocommerce_product_description_heading', '__return_null');

    neither worked on this theme.

    #31147

    Artem Temos
    Keymaster

    Hi,

    You can remove it with the following CSS code

    .tabs-layout-tabs .tabs {
    	display: none!important;
    }

    Regards

Viewing 2 posts - 1 through 2 (of 2 total)