Home Forums Basel support forum how to hide Description / Reviews (0) / Shipping & Delivery

how to hide Description / Reviews (0) / Shipping & Delivery

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

    rakeshchopra41
    Participant

    how to hide Description / Reviews (0) / Shipping & Delivery section from individual product page?

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

    Artem Temos
    Keymaster

    Hello

    Try to add the following PHP code snippet to the child theme functions.php file to do this

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

    Kind Regards

    #694481

    rakeshchopra41
    Participant

    Ok Thanks

    #694569

    Artem Temos
    Keymaster

    You are always welcome. Feel free to contact us if you have any further questions.

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

The topic ‘how to hide Description / Reviews (0) / Shipping & Delivery’ is closed to new replies.