Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi,
I'm thinking about adding something like this to my product page instead of setting up variants, which usually generates 2 or 3 results always less than 20 and sometimes 0.
Do you think this will slow down my product page drastically?
{% assign group = product.handle | split: '-' | first %}
<select>
<option>
{% for product in collection['all'].products %}
{{ all_products[group].title | split: '|' | last }}
{% endfor %}
</option>
</select>
thanks
yes this will make some minor differences does use split two-time use one loop and set default selected as the index 0 else in item In select option
{% for product in collections.frontpage.products %}
{{ forloop.index0 }}
{% endfor %}