@thevault product.published_at - Returns a timestamp for when a product was published on a store.
https://shopify.dev/docs/themes/liquid/reference/objects/product#product-published_at
Main issue: Sort collection products by publish date (published_at) instead of created date in Shopify (Debut theme). Users want newest-by-publish-date ordering across collections.
What works for many: Use Liquid to sort collection.products by published_at and loop over a reassigned array (e.g., collection_products). Some tie it to the sort_by parameter (created-ascending/descending) to reuse Shopify’s UI options. product.published_at is the publish timestamp; created_at can’t be changed. Draft → publish can reset published_at; scheduling sets future publish times.
Key limitations and pitfalls:
Alternatives/outcomes:
Status: No native Shopify option; partial code workarounds exist, but large catalogs/pagination remain unresolved.
@thevault product.published_at - Returns a timestamp for when a product was published on a store.
https://shopify.dev/docs/themes/liquid/reference/objects/product#product-published_at