Home Forums WoodMart support forum Disable tab description

Disable tab description

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

    Toni Tarres
    Participant

    Hello,
    I need to hide the description tab of the tab of each product.
    Can you help me?

    Thanks

    Attachments:
    You must be logged in to view attached files.
    #321746

    Luke Nielsen
    Member

    Hello,

    In order to remove the description tab, you need to add this code to the functions.php file in your child theme

    if ( ! function_exists( 'wd_single_remove_description_tab' ) ) {
      
        function wd_single_remove_description_tab( $tabs ) {
            unset( $tabs['description'] );
    
            return $tabs;
        }
    
        add_filter( 'woocommerce_product_tabs', 'wd_single_remove_description_tab', 100 );
    }

    Kind Regards

    #321755

    Toni Tarres
    Participant

    Ok thank you so much!!! Now works correctly! 😉

    #321886

    Luke Nielsen
    Member

    Hello,

    We are glad that your issue has been resolved.

    If you do not mind, can you please leave a 5 stars rating for our Theme & Customer and Technical Support by going here: http://themeforest.net/downloads It will allow us to release more updates and provide dedicated support in the future.

    Have a wonderful day.

    Kind Regards

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

The topic ‘Disable tab description’ is closed to new replies.