Hi Jason
I am not a developer actually. My developer used the paginate function to use tags for showing color options in the product page. A specific tag is picked on the product page and all products with tag tag show as a color varation.
This is happening for the first 1000 products only in alphabetical order. My catalogue size is more than 1000 products. But I am ok to apply this code for certain collections only. Currently the code used is
{%- paginate collections.all.products by 1000 -%}
{% for products in collections.all.products %}
//logic goes inside the loop
{% endfor %}
{% endpaginate %}
Can we change all products to a specific collection
The above photo as it is in the first 1000 products the variation shows
In the above photo the variation doesn’t show as it goes above the first 1000 products.
Please help me how I can show color variations which are basically completely different product URL

