Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
When installing the package on Umbraco v6.1.5 (Assembly version: 1.0.4993.19246) and accesing the sitemap through
http://www.yourdomain.com/cultivsearchenginesitemap it gives a Razor error.
To fix this issue, following code needs to be changed:
if (node.Level <= maxLevelForSiteMap && node.ChildrenAsList.Count > 0)
To
if (node.Level <= maxLevelForSiteMap && node.ChildrenAsList.Count() > 0)
hello,
i'm facing the same error. change the macro code as per your suggestion solve the problem.
i'm using Umbraco 7.2.1
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Cultiv_Search_Engine_Sitemap_(Razor_edition)_1.0.2.zip RAZOR error
When installing the package on Umbraco v6.1.5 (Assembly version: 1.0.4993.19246) and accesing the sitemap through
http://www.yourdomain.com/cultivsearchenginesitemap it gives a Razor error.
To fix this issue, following code needs to be changed:
if (node.Level <= maxLevelForSiteMap && node.ChildrenAsList.Count > 0)
To
if (node.Level <= maxLevelForSiteMap && node.ChildrenAsList.Count() > 0)
hello,
i'm facing the same error. change the macro code as per your suggestion solve the problem.
i'm using Umbraco 7.2.1
is working on a reply...