query last image in shopify liquid -


i’m trying add link size guide image having pull last image collection.

but right it’s pulling images, not last. how pull last?

 <!-- size guide -->          <div id=“size_guide”>  {% image in product.images %}  <a href=“{{ image.src | product_img_url: ‘master’ }}” class=“fancybox-media {% cycle ‘,last’ %}”>  size guide</a> {% endfor %}           </div>  </div> 

try using last array filter. e.g:

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

Comments

Popular posts from this blog

javascript - ScrollTo Effect (href to div) -

javascript - document.registerElement extending HTMLInputElement prototype while using custom tag name to avoid implicit browser style -

javascript - How do I find how many occurences are there of a highlighted string, and which occurence is it? -