Move WooCommerce product tabs out of the tabs
I want to have the product tabs out of the tabs section and put them one down the other with no need of having the tabs functionality.
I can unset the tabs
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs['description'] );
unset( $tabs['reviews'] );
unset( $tabs['additional_information'] );
return $tabs;
}
but I dont know how to reset them in columns layout and not in tabs.
Thanks for any help
Topic woocommerce-offtopic tabs Wordpress
Category Web