@thevault You can use {% assign collections = collections | sort: ‘published_at’%}
For example, the code responsible for https://nichegeek.myshopify.com/collections/ would be as given below (sections/list-collections-template.liquid)
{% assign collections = collections | sort: 'published_at'%}
{% for collection in collections %}
{% if collection.products_count != 0 %}
<li class="grid__item {{ grid_item_width }}">
{% include 'collection-grid-item', collection_image_size: image_size %}
{{collection.published_at | date: "%a, %b %d, %Y"}}
</li>
{% endif %}
{% endfor %}