Guest User

Untitled

a guest
Jan 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. {% assign vendor = product.vendor %}
  2. {% assign handle = product.handle %}
  3. {% assign counter = '' %}
  4. {% for product in collections['shop-all'].products %}
  5. {% if vendor == product.vendor and counter.size < 4 and handle != product.handle %}
  6. {% capture temp %}{{ counter }}*{% endcapture %}
  7. {% assign counter = temp %}
  8. <div class="recommendations_img">
  9. <a href="{{ product.url | within: collection }}" title="{{ product.title }}">
  10. <img src="{{ product.images.first | product_img_url: 'small' }}" alt="{{ product.title }}" />
  11. </a>
  12. </div><!-- .recommendations_img -->
  13. {% endif %}
  14. {% endfor %}
  15.  
  16. {% assign vendor_handle = vendor | handleize %}
  17. {% for product in all_products[vendor_handle].vendor %}
  18. <a href="{{ product.url }}" title="{{ product.title }}">
  19. <img src="{{ product.images.first | product_img_url: 'small' }}" alt="{{ product.title }}" />
  20. {% endfor %}
Add Comment
Please, Sign In to add comment