Tagged: 

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

    Hi

    I’m having trouble trying to remove the “description” tab from the product page. I just want to remove the tab, not the content inside.
    I tried with this on css enfold options but it doesn’t work:

    div.product .woocommerce-tabs ul.tabs {
    visibility: hidden;
    }

    Is there any other code?
    Thanks

    #722711

    Hey gasto,

    Please try adding this at the very end of your themes / child themes functions.php file:

    add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
    function woo_remove_product_tabs( $tabs ) {
    unset( $tabs['description'] );      	// Remove the description tab
    return $tabs;
    }

    Best regards,
    Vinay

    #724070

    Thanks a lot.

    #724263

    Hi,

    Glad we could help. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Removing "Description" tab from Product page’ is closed to new replies.