Hi there,
At the web site level, I enabled the option "Include products inside sitemap.xml". However, I am not seeing any products in the site,map.xml file. Is there anything else I need to enable to make this work?
Imar
Hi there,
At the web site level, I enabled the option "Include products inside sitemap.xml". However, I am not seeing any products in the site,map.xml file. Is there anything else I need to enable to make this work?
Imar
Hi Imar
Check these things:
Hope this helps - otherwise mail me a link and I will have a look.
BR Nicolai
Hi Imar
AND it requires that the primary group is set on a product. That should of course not be needed when you only have one group. I'll have someone look at that issue.
BR Nicolai
Hi Nicolai,
Thanks, it was the primary group that made the difference. Is there a way to batch upddate all products in a group or do I have to manually set the primary group for each product?
Imar
You can fire these SQLs in the management center 1 at the time:
alter table [EcomGroupProductRelation] add tempid int identity
update [EcomGroupProductRelation] set GroupProductRelationIsPrimary = 1
where tempid in(
SELECT distinct min(tempid) as id
FROM [ecommerceBikez].[dbo].[EcomGroupProductRelation]
group by GroupProductRelationProductID
)
alter table [EcomGroupProductRelation] DROP COLUMN tempid
Excellent. Where would I be without you.....
Imar
You must be logged in to post in the forum