Do you think this code is slow?

Ardi94
Shopify Partner
104 3 32

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

Reply 1 (1)

AvidBrio
Shopify Expert
295 17 29

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 %}

 

If you find our comment helpful, hit the like button and accept it as a solution.
Want us to implement custom changes in your store? Contact us
Email me directly - jim@avidbrio.com