Comments Gianni started the conversationFebruary 7, 2022 at 4:28pm In the product sheets there are vendor info and size charts. How can I remove them from all product sheets? 2,633Kevin repliedFebruary 8, 2022 at 3:09amHiĀ GianniGo 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Ā ! Sign in to reply ...
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
ThanksĀ !