I want to display product tabs on category page in WooCommerce. I have tried the following code but didn’t get any proper solution.
add_action( 'woocommerce_single_product_summary', 'woocommerce_output_product_data_tabs', 60 );
I want to display product tabs on category page in WooCommerce. I have tried the following code but didn’t get any proper solution.
add_action( 'woocommerce_single_product_summary', 'woocommerce_output_product_data_tabs', 60 );
Comments are closed.
You can use action hook “woocommerce_after_shop_loop_item” for this purpose.
This outputs the product tabs but formatting is a mess. You will need to add custom css to make those tabs function as desired.
Hope this helps.
corrected solutions