Skip to main content
Contributor I
August 1, 2024
Solved

Personalization

  • August 1, 2024
  • 2 replies
  • 162 views

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, 

    This topic has been closed for replies.
    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

    MaxbuzzAnswer
    Partner
    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

    https://theforms.pro
    Contributor I
    August 1, 2024

    Fabulous. Thank you so much!