1rst issue, how can I make my first column showcase new items, instead of a specific collection
2nd issue, how can I make my pictures in each category clickable to each category instead of just clicking the link below each photo
Any help is VERY appreciated!!
littlebeanstees
Making the first column showcase new items instead of a specific collection: To showcase new items in the first column, you can modify the code that populates the products in that section. Instead of fetching products from a specific collection, you would need to retrieve the latest products based on their creation date. Here’s a general approach:
- Identify the code responsible for populating the first column with products.
- Replace the code that fetches products from a collection with code that retrieves the latest products. You can use the Shopify Liquid
collections object and sort the products by their creation date in descending order.
- Update the code to limit the number of products displayed in the first column, if necessary.