Skip to main content
Solved

Personalization

  • August 1, 2024
  • 2 replies
  • 93 views

Forum|alt.badge.img+2

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

2 replies

Forum|alt.badge.img+32
  • Partner
  • 253 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+2
  • Author
  • Contributor I
  • 1 reply
  • August 1, 2024

Fabulous. Thank you so much!