Tagged: Product page, reorder
Hi there,
I am trying to figure out how to change the order in the elements of the woocommerce product page. In particular I want to move the price under the short description. I saw that this cannot be done through changing the woocommerce files, as it is handelt by avia framework.
Could you help me please with what I do and to which file in order to change the order?
Thanks Alex
Hi alex55!
Thank you for using Enfold.
You can create your own product template file or use this on functions.php:
add_action('wp_footer', 'ava_product_order');
function ava_product_order(){
?>
<script>
(function($){
var desc = $("div[itemprop='description']").detach();
$(desc).insertAfter("div.product .product_title");
})(jQuery);
</script>
<?php
}
Regards,
Ismael