Hello,
I want to modify woocommerce-tabs Product Description position.
Here is an image that it is to describe what I mean.
http://jmja.com.cn/rose/position.png
Thanks
Hi,
Try adding this at the very end of your theme / child theme functions.php file:
function add_custom_script(){
if(is_singular('product')){
?>
<script>
(function($){
$(window).load(function() {
$('.single-product-summary').after($('.woocommerce-tabs').detach())
});
})(jQuery);
</script>
<?php
}
}
add_action('wp_footer', 'add_custom_script');
Regards,
Josue
Hi,
Thanks for your help.
Regards,
Zeng