I have recently installed the template and just making tweaks, the products node which is created as part of the starter kit installation, I am looking to display these on the Homepage content section but can not get this to work.
@inherits Umbraco.Web.Macros.PartialViewMacroPage
This snippet lists the items from a Multinode tree picker, using the pickers default settings.
Content Values stored as xml.
To get it working with any site's data structure, set the selection equal to the property which has the
multinode treepicker (so: replace "PropertyWithPicker" with the alias of your property).
@{ var selection = CurrentPage.Content.Split(','); }
<ul>
@foreach (var id in selection)
{
var item = Umbraco.Content(id);
<li>
<a href="@item.Url">@item.Name</a>
</li>
}
</ul>
Not sure what the alias needs to be surely Products?
Featured products macro partial
I have recently installed the template and just making tweaks, the products node which is created as part of the starter kit installation, I am looking to display these on the Homepage content section but can not get this to work.
Not sure what the alias needs to be surely Products?
Managed to find a workaround by changing the selection variable:
I then updated the foreach loop to utilise this:
Just need to tweak to ensure it all takes featured products and 9 maximum which could perhaps be a macro parameter.
is working on a reply...