How to place product meta above “buy now” button and under short description?
Hey Uroš,
You can add this code in your child theme’s functions.php:
add_action( 'woocommerce_single_product_summary', 'my_product_meta', 25 );
function my_product_meta() {
//your code here
}
Just insert your code and replace the comment.
Hope it helps.
Best regards,
Nikko