> For the complete documentation index, see [llms.txt](https://help.accentuate.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.accentuate.io/metafield-definitions/fields/field-data-type/shopify-field-types/shopify-boolean.md).

# 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](https://shopify.dev/api/liquid/objects/metafield), the *value* property returns the actual value:

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