Answers for "if equal condition twig"

PHP
1

twig if statement

{% if online == false %}
    <p>Our website is in maintenance mode. Please, come back later.</p>
{% endif %}
Posted by: Guest on March-19-2020
0

twig conditions

{% if product.stock > 10 %}
   Available
{% elseif product.stock > 0 %}
   Only {{ product.stock }} left!
{% else %}
   Sold-out!
{% endif %}
Posted by: Guest on March-22-2021

Browse Popular Code Answers by Language