Home Forums WoodMart support forum Move the below add to cart elements Reply To: Move the below add to cart elements

#226298

Hello,

Please add this code:

add_action(
   'wp',
   function() {
      remove_action( 'woocommerce_single_product_summary', 'woodmart_after_add_to_cart_area', 31 );
      add_action( 'woocommerce_single_product_summary', 'woodmart_after_add_to_cart_area', 35 );
   }
);

Best Regards