Add to cart & Variations Above short description
-
Hello,
Can you please advise on how I can move ‘add to cart’ and any variations above the short description on my product pages?
Attached photo for clarity.
Thanks,
Attachments:
You must be
logged in to view attached files.
Hello,
I saw the screenshot you attached.
Try to add the following code snippet to the functions.php file in the child theme.
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 15 );
Best Regards.