Have your say in Community Polls: What was/is your greatest motivation to start your own business?

metaobject entry link for a button

metaobject entry link for a button

SF007
Shopify Partner
2 0 0
{% for store in shop.metaobjects.stores.values %}
        <div class="bckrt-card" data-name="{{ store.name | escape }}" data-location="{{ store.location | escape }}">
            <img src="{{ store.store_image | image_url }}" alt="{{ store.name | escape }}">
            <div class="bckrt-content">
                <h3>{{ store.name }}</h3>
                <p><strong>Description:</strong> {{ store.description }}</p>
                <p><strong>Location:</strong> {{ store.location }}</p>
                <a href="{{ store.url }}" class="bckrt-btn">View Store Details</a>
            </div>
        </div>
        {% endfor %}

I created this loop for my metobjects entries. in this the button link not getting metaobject entry link. Someone please help me with that?

Replies 0 (0)