Re: Users - How to Create Product Properties or Details
Posted by
rohit on
URL: http://ofbiz.116.s1.nabble.com/How-to-Create-Product-Properties-or-Details-tp139281p139287.html
hi jacopo,
i was able to get this done. i feel pretty proud of this, this is my first step towards learning ofbiz.
i made the following additions:
1) In order/webapp/ordermgr/WEB-INF/actions/entry/catalog/productdetail.bsh
// get the product attribute(s)
attribute = product.getRelated("ProductAttribute");
context.put("ProductAttribute", attribute);
2) In component://order/webapp/ordermgr/entry/catalog/marketplace_productdetail.ftl
<#-- attributes of product -->
<#if ProductAttribute?has_content>
<#list ProductAttribute as ProductAttributes>
<div class="tabletext">
${ProductAttributes.attrName}: ${ProductAttributes.attrValue}</div>
</#list>
</#if>
<#-- attributes of product END -->
I will appreciate if you just let me know if this is the right method to edit files in future, or there is another better way.
Thanks
rohti