{% 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?