How to remove woocommerce tab?

前端 未结 6 1081
[愿得一人]
[愿得一人] 2021-01-11 18:51

the products in our woocommerce shop don\'t need any of the default tabs so I have managed to disable them being that I only need to have the product description below the p

6条回答
  •  南笙
    南笙 (楼主)
    2021-01-11 19:29

    If you want to remove tabs from woo-commerce product details page, then add this code in your function.php

    Option 1-

    Go to functions.php and Add the following code. (Go to Admin panel > Appearance > Editor > functions.php)

    add_filter( 'woocommerce_product_tabs', 'woo_remove_tabs', 98 );
    function woo_remove_tabs( $tabs ){
        if(is_product()){
          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;
     }
    

    By using this filter we can Remove the tabs From the Woocommerce Product Pages.

    Option 2-

    Or for an alternative approach just add this to your functions.php

    remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10);
    

    Option 3-

    Hide the tab by adding this to the bottom of woocommerce.css

     .woocommerce_tabs .tabs {
        display: none;
    }
    

    Read more -Woo-commerce: Remove tab from product page

提交回复
热议问题