I want to use an if
statement in Liquid with multiple conditionals. Something like:
{% if (include.featured == \"true\" and product.featured ==
Another way you can condense this is to combine else if statements, and booleans don't necessarily need the "==" when evaluating true:
{% if include.featured and product.featured %}
{% assign test = true %}
{% elsif include.featured == false and product.featured == false %}
{% assign test = false %}
{% endif %}