Skip to content

Instantly share code, notes, and snippets.

@carlitoescobar
Created September 22, 2019 17:15
Show Gist options
  • Save carlitoescobar/b07b4110b8e87fb430433a281d1b93b1 to your computer and use it in GitHub Desktop.
Save carlitoescobar/b07b4110b8e87fb430433a281d1b93b1 to your computer and use it in GitHub Desktop.
Shopify select box to show list of products in a collection
<select onchange="javascript&colon;location.href = this.value;">
{% for p in collection.products %}
{% unless p.id == product.id %}
<option value="{{ p.url | within: collection }}">{{ p.title }}</option>
{% endunless %}
{% endfor %}
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment