Hello,
I noticed that the related products weren't behaving properly in Rapido on the product page. If I add products to the "related products" group then no problem. However, I have created another group called "Spare Parts". Then things start to go wrong. The Related Products look fine, but the Spare parts actually seem to contain every product in the shop.
I think the issue comes from the code used to create the url to the related products feed :
feedFullUrl = feedPageUrl + "&PageSize=" + relatedProductsPageSize + "&ProdID=" + productId + "&feed=true";
[...]
string relatedFeed = feedFullUrl + "&" + relatedGroupId + "=" + productId + "&GroupName=" + relatedGroupId;
This gives urls like this :
/products?PageSize=4&ProdID=1186&feed=true&RelatedProducts=1186&GroupName=RelatedProducts
/products?PageSize=4&ProdID=1186&feed=true&SpareParts=1186&GroupName=SpareParts
Which, you'll admit, don't make much sense. What is the right url to use to get the feed for a specific related products group ?
Thanks