在前端添加magento自定义属性

时间:2016-10-05 06:51:43

标签: php magento

确定!我正在研究这个过去2周的magento项目。这是我的第一个magento应用程序。

我在后端为像这样的magento产品添加了一些新属性....

Backend -> Catalog -> Manage Products -> 'Selected one product' -> General setting -> Create New Attribute

假设我在后端添加了locking(属性代码)属性,现在我想在产品目标网页的前端显示此属性。

我试过这样打电话 frontend\mgstheme\luxury\template\catalog/product/view/description.phtml

<?php echo $_product->getLocking(); ?>

但它不可见

我做错了吗?如果是的话请告诉我

1 个答案:

答案 0 :(得分:0)

最初,对于您要在产品页面或类别页面上使用的每个产品属性,您都会告诉Magento它们是否应该可用。

为此,请在Magento Admin -> Catalog -> Manage Attributes下找到该属性。然后在靠近底部的前端属性下,您会找到以下选项:Visible on Product View Page on Front-endUsed in Product Listing。将其值设置为YES。

这些将允许您分别在产品页面和类别页面上显示属性。