Open Tech-dev-coder opened 1 month ago
Recent orders / any order are not showing.
Yes, I created products in the collection, but none of them are showing.
Had the same problem. Solved it by setting pageParam to 0 in getCollectionsWithProducts from collection.ts :
const { response } = await getProductsList({
pageParam: 0, // add this parameter
queryParams: { collection_id: collectionIds },
countryCode,
})
Yes, I added it, but it doesn't make any changes. I want to display the products in the product rail on the storefront home page. medusa-storefront/src/modules/home/components/featured-products/product-rail/index.tsx
Any fix for this? I am facing the same issue. Please help
Had the same problem. Solved it by setting pageParam to 0 in getCollectionsWithProducts from collection.ts :
const { response } = await getProductsList({ pageParam: 0, // add this parameter queryParams: { collection_id: collectionIds }, countryCode, })
This fixed the issue for me, thanks
Had the same problem. Solved it by setting pageParam to 0 in getCollectionsWithProducts from collection.ts :
const { response } = await getProductsList({ pageParam: 0, // add this parameter queryParams: { collection_id: collectionIds }, countryCode, })
This fixed the issue for me, thanks is this solved issue
product-rail not working in home page.