Home Forums WoodMart support forum remove description tab from all product pages

remove description tab from all product pages

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #631479

    kidsdial4
    Participant

    remove description tab from all product pages

    #631591

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    Please add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:

    li#tab-title-description {
        display: none !important;
    }

    Best Regards

    #631721

    kidsdial4
    Participant

    I have added your code. Now “Description” tab is not displaying. but the content of description is still displaying when we open the product page. please help me to hide the content of description also.

    #631856

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    Please remove the previous code and try to add the following PHP code snippet to the child theme functions.php file to fix this.

    add_filter( 'woocommerce_product_tabs', 'pk_remove_desc_tab', 9999 );
     
    function pk_remove_desc_tab( $tabs ) {
       unset( $tabs['description'] );
       return $tabs;
    }

    Best Regards

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