Join WooCommerce builders, founders, and agencies at Checkout Summit {Reloaded} on May 7-8, 2026 Search
Business Bloomer
  • Join the Club
  • WooCommerce Plugins
  • WooCommerce Blog
  • Log In
  • 0
  • Business Bloomer Club
  • WooCommerce Plugins
  • WooCommerce Tips
  • Log In
  • Search
  • Contact
  • Cart
WooCommerce Bites My Account Translation

Customizing the “Hello” Message on the WooCommerce My Account Page

Last Revised: Nov 2024

STAY UPDATED

In a recent Business Bloomer Club discussion, a member sought assistance in modifying the greeting message on the WooCommerce My Account page.

By default, the message includes the user’s username, which may not provide a personalized experience for customers. Instead, the goal is to display “Hello {first name}” and “not {first name}” to create a warmer and more welcoming atmosphere.

This customization can be achieved by utilizing a filter in WooCommerce to modify the greeting string, allowing for a dynamic and personalized experience based on user data.

Solution: Custom Code Snippet

To implement this change, you can use the gettext filter in WooCommerce, which enables you to replace specific text strings throughout your site. Here’s how to set it up:

Step-by-Step Instructions

Add the Code Snippet: Insert the following code into your theme’s functions.php file or a custom plugin:

add_filter( 'gettext', function( $translated, $untranslated, $domain ) {
    if ( 'woocommerce' === $domain && $translated === 'Hello %1$s (not %1$s? <a href="%2$s">Log out</a>)' ) {
        // Get the current user object
        $current_user = wp_get_current_user();

        // Use the first name in place of the username
        $first_name = !empty($current_user->user_firstname) ? $current_user->user_firstname : $current_user->display_name;

        // Return the new greeting message
        return sprintf( 'Hello %1$s (not %1$s? <a href="%2$s">Log out</a>)', esc_html( $first_name ), esc_url( wp_logout_url() ) );
    }
    return $translated;
}, 9999, 3 );

Explanation of the Code

  • Hook into gettext: The gettext filter allows you to modify the translated text strings.
  • Check the Domain: Ensure that the domain is ‘woocommerce’ to apply the change only on WooCommerce pages.
  • Get Current User Data: Use wp_get_current_user() to retrieve the current user’s information, including their first name.
  • Modify the Greeting: Replace the username placeholder with the user’s first name in the greeting message.

Conclusion

This code snippet provides a straightforward method to personalize the greeting message on the My Account page, enhancing user experience by addressing customers by their first name. By implementing this change, you create a more welcoming atmosphere for your customers, encouraging them to engage more with your store.

Related content

  • WooCommerce: Separate Login, Registration, My Account Pages
    There are times when you need to send logged out customers to a Login page and unregistered customers to a standalone Register page. As you…
  • WooCommerce: Add New Tab @ My Account Page
    One of the features of Business Bloomer Club is the provision of Premium WooCommerce Q&A Support to supporters who enroll. So, how to add an…
  • WooCommerce: How to Translate / Rename Any String
    There are times you don’t want to translate the whole installation of WooCommerce just for renaming one short string. There are times you need to…
  • WooCommerce: How To Make A Website GDPR Compliant? (12 Steps)
    Ok, we all know that the EU General Data Protection Regulation (GDPR) will come into force on the 25th May 2018. So the main question…
  • WooCommerce Visual Hook Guide: My Account Pages
    Hey WooCustomizers, the Visual Hook Guide is back 🙂 In this episode, I’ve created a visual HTML hook guide for the WooCommerce Account Pages (there…

Rodolfo Melogli

Business Bloomer Founder

Author, WooCommerce expert and WordCamp speaker, Rodolfo has worked as an independent WooCommerce freelancer since 2011. His goal is to help entrepreneurs and developers overcome their WooCommerce nightmares. Rodolfo loves travelling, chasing tennis & soccer balls and, of course, wood fired oven pizza. Follow @rmelogli

Reply Cancel reply

Your email address will not be published. Required fields are marked *


Let's Talk WooCommerce, In Person

I'm bringing together WooCommerce professionals who care about code, business, and connections. No hype, no sales pitches—just smart people meeting in person in Palermo, Italy, April 23–24, 2026.
Join Us at Checkout Summit 2026 → Checkout Summit 2026

Search WooCommerce Tips

Popular Searches: Visual Hook Guides - Checkout Page - Cart Page - Single Product Page - Add to Cart - Emails - Shipping - Prices - Hosting

Recent Articles

  • WooCommerce: Send Email When a Coupon Is Used
  • WooCommerce: Simple Price Including/Excluding Tax Switcher
  • WooCommerce: Refund Request Button @ My Account
  • WooCommerce: Show or Hide Bank Accounts Based On Order
  • WooCommerce: Save Order Currency Exchange Rate

Latest Comments

  1. Rodolfo Melogli on Are We Losing WooCommerce Merchants Because of WP Admin?
  2. Jonathan de Jong on Are We Losing WooCommerce Merchants Because of WP Admin?
  3. Lyle Harbour on Restrict WooCommerce Checkout Based on Product and Shipping Country

Find Out More

  • Become a WooCommerce Expert
  • Business Bloomer Club
  • WooCommerce Blog
  • WooCommerce Weekly
  • Contact

Contact Info

Ciao! I'm Rodolfo Melogli, an Italian Civil Engineer who has turned into an international WooCommerce expert. You can contact me here:

Twitter: @rmelogli

Get in touch: Contact Page

Business Bloomer © 2011-2026 - VAT IT02722220817 - Terms of Use - Privacy Policy

Cart reminder?

x