Skip to main content
Solved

Personalization


Forum|alt.badge.img+1

What is the formula to personalize if someone doesn’t have a name registered. Leaving it blank doesn’t work. I’d like it to say Hi there, instead of blank. This is what I am using but I would like it to fix caps if the person hasn’t entered with no caps. 

{{ first_name|default:'Hi there' }}!

Thank you, 

Best answer by Maxbuzz

Hello @IamGrateful  You cna use this snipprt for personalization.

 

{{ first_name|default:'Hi there'|title }}

Title will auto capitalize from john to John

View original
Did this topic or the replies in the thread help you find an answer to your question?

2 replies

Forum|alt.badge.img+31
  • Partner
  • 252 replies
  • Answer
  • August 1, 2024

Hello @IamGrateful  You cna use this snipprt for personalization.

 

{{ first_name|default:'Hi there'|title }}

Title will auto capitalize from john to John


Forum|alt.badge.img+1
  • Author
  • Contributor I
  • 1 reply
  • August 1, 2024

Fabulous. Thank you so much! 

 


Reply