Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to output all customer orders using the for loop {% for order in customer.orders %}. This only displays 20 orders and there is no way to pull the additional orders from the backend. I have looked through the associated code and there isn't anything paginating the orders and if I console.log the customer orders json it only returns the 20 as well. Does anyone know if this is setup by default and/or if there is a way to configure this to display all customer orders without a limit of 20?

CODE:

{% for order in customer.orders %}

  <tr class="{% cycle 'odd', 'even' %} {% if order.cancelled %}cancelled_order{% endif %}">
    <td>{{ order.name | link_to: order.customer_url }}</td>
    <td><span class="note">{{ order.created_at | date: "%b %d, %Y" }}</span></td>
    <td><span class="status_{{ order.financial_status }}">{{ order.financial_status }}</span></td>
    <td><span class="status_{{ order.fulfillment_status }}">{{ order.fulfillment_status }}</span></td>
    <td><span class="total money">{{ order.total_price | money }}</span></td>
  </tr>

{% endfor %}
share|improve this question
Hi Brian! The best place to ask this kind of thing is probably ecommerce.shopify.com/c/ecommerce-design as there aren’t many Liquid experts who hang out here, but there are over there. – Edward Ocampo-Gooding Jan 19 at 8:11

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.