Add a small custom message directly below the product title on WooCommerce single product pages.
Steps
- Add the code below to your theme’s
functions.php. - Replace the message with your own text.
- Save the changes and open a product page.
/**
* Add custom text after WooCommerce product title
*/
function custom_text_after_product_title() {
echo '<p class="custom-product-note">Fast & Secure Delivery Available</p>';
}
add_action(
'woocommerce_single_product_summary',
'custom_text_after_product_title',
6
);