I am looking to build a drop down list of the categories a product is associated with as a quick jump list on our product page. I am stumped on getting a handle on the Category Conical URI MVT format. I need to build a list of URLS for the drop down field and I am unable to figure this out. Any help would be appreciated.
Code:
<mvt:do name="l.result" file="g.Module_Library_DB" value="CategoryList_Load_Offset_Product_Assigned(l.settings:product:id,0,'','',0,l.null, g.assigned_categories )" /> <mvt:foreach iterator="category" array="global:assigned_categories"> <mvt:if expr="l.settings:category:active"> &mvt:category:name;<br> &mvt:category:link;<br> <<<?????????? </mvt:if> </mvt:foreach>
Comment