No content to show
User Activity
07-15-2024
Normally the cart drawer can be disabled from the theme settings and that should be enough, if it still appears check the "cart" button and remove classes and attributes that may be related to the cart drawer display.
You can access the fields inside a metaobject in this way: {% for metaobject in product.metafields.custom.metafield_key_name.value %}
{% if metaobject.system.type == "metaobject_identifier" %}
{{ metaobject.title }}
{{ metaobject.content | ...
You can access the fields inside a metaobject in this way:{% for metaobject in product.metafields.custom.metafield_key_name.value %}
{% if metaobject.system.type == "metaobject_identifier" %}
{{ metaobject.title }}
{{ metaobject.content | m...