Answers for "twig if then"

PHP
11

twig if else

// twig if else
{% if process_1 %}
   {{ process_1 }}
{% elseif process_2 %}
   Only {{ process_2 }} left!
{% else %}
   Sold-out!
{% endif %}
Posted by: Guest on April-12-2020
0

twig if

{% if not user.subscribed %}
    <p>You are not subscribed to our mailing list.</p>
{% endif %}
Posted by: Guest on May-19-2020

Browse Popular Code Answers by Language