Hi
I have some items in a named itemlist. I publish these items with the ItemPublisher app on DW 9.1.4. When rendering the list I use this code:
foreach (var item in GetLoop("ItemPublisher:Items.List"))
{
<a href="@item.GetValue("ItemPublisher:Item.DetailsUrl")">Details</a>
}
I have enabled "Customized Urls" on the itemtype and enabled userfriendly urls for items in "MC-Web and HTTP-Customized URLs". But still the link in the foreach loop in my template renders like: http://[mydomain]/[pagename]?itemId=[itemtypename]:[itemid]
How do I get userfrindly urls when linking to my items (detailpage view)?