Tagged: enfold, woocommerce
Hi
https://nationalhospitalityacademy.co.uk/product/food-hygiene-level-3/
I want to move the “Add to Cart” button above the bundled products but I cannot find out how to do it. I want the layout to be:
PRODUCT TITLE
PRICE
BUTTON
SHORT DESCRIPTION
BUNDLED PRODUCTS
LONG DESCRIPTION
Any help would be greatly appreciated
Hey creativecrowddigital,
Please try this in your functions.php file:
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', 1);
Best regards,
Rikard