Hi,
Please add the PHP code below in functions.php of child theme
function re_init_wcvs() {
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
}
add_action( 'init', 're_init_wcvs', 10 );
And please add the custom CSS code below in style.css of child theme
.single_variation_wrap { display: none; }
Cheers,
Foster