I’m trying to add a link to a size guide image by having it pull the last image from a collection.
but right now it’s pulling all the images, not the last. how do i just pull the last?
<!-- SIZE GUIDE -->
<div id=“size_guide”>
{% for image in product.images %}
<a href=“{{ image.src | product_img_url: ‘master’ }}” class=“fancybox-media {% cycle ‘,last’ %}”>
SIZE GUIDE</a> {% endfor %}
</div>
</div>