-
I have been searching for a way to achieve something simple with Custom Layout templating: if a slot item value is zero-length, I don't wish to display anything Example: Main Extension: <--- if there is nothing in this field, I don't want to display the label. I tried this: {{else}} Main Extension: {{slot item @root.slots.GreeterExtension}} {{/if}} but the label still shows up with an empty GreeterExtension. What am I missing? Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @llmedina, this is likely an Handlebars issue. To compare a value you should use the
|
Beta Was this translation helpful? Give feedback.
Hi @llmedina, this is likely an Handlebars issue. To compare a value you should use the
{{eq}}
operator instead ofif
. Something like this: