0
votes

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>
1

1 Answers

0
votes

Try using the last array filter. E.g:

<a href="{{ product.images.last | product_img_url: 'master' }}">SIZE GUIDE</a>