Hi,
I want to use some code that will show a sale variant image as the first image on the product grid on the Sale Collection. This is on Impulse theme and is currently unpublished.
I was playing around with something similar to this but the issue is it assigns the last image which isn’t always the case for sale.
<div class="collection-grid-item__image-container" style="padding-top: 146.6%;"> {% assign featured_image = product.featured_image %}
{% if collection.title contains "Sale" %}
{% assign featured_image = product.images.last %}
{% endif %}
