This guide shows you how you can display custom content between the product title and the price on the WooCommerce Product Page. You may wish to let customers know of a sale or promotion running and want to capture their attention nearer the top of the single product template.
/**
* Snippet Name: WooCommerce Show Custom Content Between Title And Price
* Snippet Author: ecommercehints.com
*/
function ecommercehints_content_below_title_above_price() {
echo 'Custom content here!';
};
add_action( 'woocommerce_single_product_summary', 'ecommercehints_content_below_title_above_price', 5 );