Display custom field value on woocommerce product page

This should do it

<?php echo get_post_meta( get_the_ID(), 'current_promotions', true ); ?>

Leave a Comment