This snippet allows you to show custom content between the price and short description on the WooCommerce Single Product Template. You may wish to display some sort of guarantee, sale or promotion and this guide allows you to do just that. In fact, you can output any content you like with this snippet.
/**
* Snippet Name: WooCommerce Show Custom Content Between Price And Short Description
* Snippet Author: ecommercehints.com
*/
function ecommercehints_custom_content_below_price_above_short_description() {
echo 'Custom content here!';
};
add_action( 'woocommerce_single_product_summary', 'ecommercehints_custom_content_below_price_above_short_description', 15 );