Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #397772

    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

    #397994

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.