Shopify Enhancement: Rotating Unique Content After a Set Number of Products with Liquid
If you want to display unique content, banners (like the above image), ads, or anything after a set number of products, you can use the code below for assistance. {%- assign product_counter = 0 -%} {%- for result in collection.products -%} {% if result.object_type == ‘product’ %} {% assign mod_val = product_counter | modulo: 8…