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 - How to synchronize the Three.js and HTML/SVG coordinate systems (especially w.r.t. the y-axis)? -

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

java - Reading data from multiple zip files and combining them to one -