I can't figure out how to add product group images to the jsonfeed for a productlist. "Group Name"," Group Description" is there but no the image fields for groups.
My guess is that I need to add the image fields to the repository. But I cant see how?
Root feedRoot = new Root(); feedRoot.currentPage = GetString("Ecom:ProductList.CurrentPage"); feedRoot.totalPages = GetString("Ecom:ProductList.TotalPages"); feedRoot.pageSize = GetString("Ecom:ProductList.PageSize"); feedRoot.header = pageName; feedRoot.description = GetString("Ecom:Group.Description"); // How to accomplish this? feedRoot.largeImage = GetString("Ecom:Group.LargeImage"); feedRoot.smallImage = GetString("Ecom:Group.SmallImage"); feedRoot.id = GetString("Ecom:Group.ID"); feedRoot.headerIcon = HttpContext.Current.Request.QueryString.Get("ListName") != null ? "fa fa-star u-margin-right" : "";
Regards / Aki