twig if else
// twig if else
{% if process_1 %}
{{ process_1 }}
{% elseif process_2 %}
Only {{ process_2 }} left!
{% else %}
Sold-out!
{% endif %}
twig if else
// twig if else
{% if process_1 %}
{{ process_1 }}
{% elseif process_2 %}
Only {{ process_2 }} left!
{% else %}
Sold-out!
{% endif %}
use or and in twig statement
//For Multiple Condition
{%if ( fields | length > 0 ) or ( trans_fields | length > 0 ) %}
//If statement
{% if product.stock > 10 %}
Available
{% elseif product.stock > 0 %}
Only {{ product.stock }} left!
{% else %}
Sold-out!
{% endif %}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us