Skip to main content
Login Join
Snippet · PHP

Add a Custom Text After WooCommerce Product Title

Shared by Amit Dholiya · September 17, 2026 · @woocommerce_single_product_summary

1 upvote
Back to Snippets

Add a small custom message directly below the product title on WooCommerce single product pages.

Steps

  1. Add the code below to your theme’s functions.php.
  2. Replace the message with your own text.
  3. 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
);
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments