Philipp Tuchardt / Twig if condition shorthand

Created Tue, 21 Jan 2025 06:08:08 +0000

Long version

{% if category.translated.customFields.my_custom_field or category.translated.customFields.my_custom_field != false %}

Short version

{{ category.translated.customFields.my_custom_field ?? false ? 'foo' : 'bar' }}