Home Forums WoodMart support forum ADD TO CART button position Reply To: ADD TO CART button position

#28005

Artem Temos
Keymaster

Hi,

Try to put this code snippet to the functions.php file in the child theme to move it

add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 19);
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30);

Regards