Hi @LitExtension The code works great, and sorry one last thing
Can I show the banner only on the first page of the collection?
A user seeks to insert banner images within a product grid on a Shopify collection page. The initial attempt using {%- if forloop.index == 1 -%} incorrectly places the banner on the second grid position instead of the first.
Solution provided:
forloop.index == 2 for the first visible position after accounting for grid layout){% if collection.handle == 'new-arrivals' %}{%- if forloop.index == 2 and paginate.current_page == 1 -%}Additional developments:
Status: The initial issue was resolved through iterative code adjustments, but a new compatibility problem emerged after theme updates. Several follow-up requests remain unanswered.
Hi @LitExtension The code works great, and sorry one last thing
Can I show the banner only on the first page of the collection?