You would write a function to hook into the do_action
within the WooCommerce single product template file.
If you look at the file, you can see: do_action( 'woocommerce_single_product_summary' );
Knowing this, you can then use your child theme to add the code snippet.
Ex:
// Add code below product price
function sf_child_theme_single_product_below_price_code() { ?>
<!-- Your code here -->
<?php }
add_action( 'woocommerce_single_product_summary', 'sf_child_theme_single_product_below_price_code' );
I’d recommend you add your above code to a new SPB Section and then reference the SPB Section ID shortcode in the above function example. I do not recommend you paste in your code chunk above straight into that function.