Help

Frequently asked questions and other useful tidbits.

Artist

Updated on April 16th, 2008

artist.id

Returns the id of an artist.

artist.name

Returns the name of an artist.

artist.permalink

Returns the permalink of an artist.

artist.url

Returns the URL of an artist.

View <a href="{{ artist.url }}">my artist</a>

artist.products

Returns all of the products of an artist.

{% for product in artist.products %}
  <p>{{ product.name }}</p>
{% endfor %}

artists.all

Returns all of the artists in your store.

{% for artist in artists.all %}
  <p>{{ artist.name }}</p>
{% endfor %}

artists.active

Returns all of the artists that are currently in use by one or more products.

{% for artist in artists.active %}
  <p>{{ artist.name }}</p>
{% endfor %}

artists.permalink

Returns a specific artist based on it’s permalink.

<a href="{{ artists.rick-astley.url }}">Rick roll</a>

Contact

Can’t find an answer to your question? No worries, we’re here to help.