Move product short description over add to cart

/* AWK : move product SHORT description OVER add to cart */
add_action( 'woocommerce_single_product_summary', 'customizing_variable_products', 1 );
function customizing_variable_products() {
global $product;

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 );
}
Scroll to Top