Show all products on a URL without collection use

Hello everyone,

I would like to create a kind of ‘gifts’ page in my Shopify shop, which contains all the products in my shop. Is there a way to create such a page with an individual URL? I don’t want to work with collections, as I had implemented an individual breadcrumbs navigation, which has problems if a product is assigned to two collections.

Have any of you ever had this problem and have a solution for me?

I would be very pleased. Many thanks in advance.

Best regards
Timo

I think you need to do little bit of development. With javascript you can list products by sending ajax calls to /products.json path of your store.

limit products by adding ?limit parameter to it.

store-domain.com/products.json?limit=10

fetch data from this url and show with your theme’s default html structure.

Is there no easier way without coding?

I dont know If there is another solution for it.