Posted on 16/03/2023 09:16:41
I have a site that needs two seperate product lists. The first list is made up of products that are not sold online, the second can be added to cart.
I thought I might be able to just create two Product List pages, but I found that the Product List Gridview only expects a single shop page on line 139:
@foreach (ProductViewModel product in productList.Products)
{
string link = product.GetProductLink(GetPageIdByNavigationTag("Shop"), false);
Now the list works, and shows different products, but tries to link the detail page to the first shop page...
Just wanted to check if you think this is something I could get to work with minor customizations, or that I'm jumping down a rabbit hole here?
Thanks,
Justin