Hi there,
I have a PIM feed that should generate links to products. When I preview the feed, the links end up as https://domain.dk/default.aspx?ID=0&ProductId=1032860
Because of the ID being zero, the links return a 404
How do I set this ID? When I look inside XMLProvider, I see this:
var shop = Services.Shops.GetShop(feedContextConfiguration.ShopId);
if (shop is object)
{
xsltArguments.AddParam("product-catalog-page-id", "", shop.ProductPrimaryPageId);
}
However, I can't seem to set ProductPrimaryPageId on the shop, other than in the database directly. Am I missing something?
Imar