Okay
  Public Ticket #2975612
delete size chart and vendor info
Closed

Comments

  • Gianni started the conversation

    In the product sheets there are vendor info and size charts. How can I remove them from all product sheets?
  •  2,567
    Kevin replied

    HiĀ Gianni

    Go to Appearance->Theme options->Ecommerce->product details, search for "Size chart" option and turn it off here
    # To hide the "Vendor info" tab, add the code below to the functions.php file on the theme

    add_filter( 'woocommerce_product_tabs', 'dokan_remove_seller_info_tab', 11 ); 
    function dokan_remove_seller_info_tab( $tabs ) 
    {  
      unset ($tabs ['seller']); 
      return $tabs;
      }
    

    ThanksĀ !