I have a custom field defined for categories and I want to add it to the sub category listing on the CTGY page. I can't figure out how to reference my field. The content is just a short description/call to action for what is in the category. Here is the codem the bold is my the expression that I can't get to work. Just brings back nothing:
<mvt:foreach iterator="sub_category" array="subcats">
<div class="col-md-4 col-sm-4 col-xs-6 subcategory-wrapper">
<div class="subcategory-item box-shadow">
...
<div class="item-details">
<h5><a href="&mvt:sub_category:link;">&mvte:sub_category: name;</a></h5>
<p>&mvt:sub_category:customfield_values:customfields: category_short_desc;</p>
</div>
</div>
</div>
</mvt:foreach>
<mvt:foreach iterator="sub_category" array="subcats">
<div class="col-md-4 col-sm-4 col-xs-6 subcategory-wrapper">
<div class="subcategory-item box-shadow">
...
<div class="item-details">
<h5><a href="&mvt:sub_category:link;">&mvte:sub_category: name;</a></h5>
<p>&mvt:sub_category:customfield_values:customfields: category_short_desc;</p>
</div>
</div>
</div>
</mvt:foreach>
Comment