I use Klaviyo for the abandoned cart option, for my whole text i use capital letters, but for now it’s not possible to change the Firstname|default in Insert Property to capital letters.
You can use “Template Tag Filters” which are handy little functions that can apply formatting or styling to Template variables. For example, if you want to change the value to “All Caps” - there is a filter called upper that you can use.
Specifically to change the First Name variable to all upper case, you can use this code:
{{ first_name|upper|default:'there' }}
For reference, here’s a few other Filters that might be helpful too:
You can use “Template Tag Filters” which are handy little functions that can apply formatting or styling to Template variables. For example, if you want to change the value to “All Caps” - there is a filter called upper that you can use.
Specifically to change the First Name variable to all upper case, you can use this code:
{{ first_name|upper|default:'there' }}
For reference, here’s a few other Filters that might be helpful too: