Shopify » Boolean

A Shopify Boolean works similar to the ACF type Checkbox There is no functional difference, but the Liquid code has a new syntax. Being a Shopify data type, that returns a Metafield object, the value property returns the actual value:

{% if product.metafields.accentuate.display_vendor.value %}
<p>{{ product.vendor }}</p>
{% endif %}

Last updated