Hi, is it possible to paginate only customer orders that are unfullfield and not all orders from the customer object →
{% assign active_orders_unfulfilled = customer.orders | where: ‘fulfillment_status’, ‘unfulfilled’ | where: ‘cancelled’, false %}
{%- paginate active_orders_unfulfilled by settings.pagination_orders, window_size: 2 -%}
…