Hi @jirodearmas,
The placement of your tabs is controlled by WooCommerce. We pass the tab data into WooCommerce’s existing tab structure and they create the front end display.
Having said that, we could also leverage WooCommerce’s hooks/filters to output custom tab content into that area. However, we can’t “move” the tab from it’s current position.
Let me know what you’d like to do.
Cheers,
Kevin.
I managed to put the tabs where I want it to using woocommerce hooks, thanks! this one helped me:
https://businessbloomer.com/woocommerce-move-product-tabs-short-description/
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 );
add_action( 'woocommerce_single_product_summary', woocommerce_output_product_data_tabs', 60 );
-
This reply was modified 8 years, 5 months ago by
jirodearmas.