我正在使用此代码在 Magento 中显示(在前端)产品的所有分配属性:
<?php if ($_product->getData('metal')): ?>
<?php echo nl2br($_product->getResource()->getAttribute('metal')->getFrontend()->getValue($_product )) ?>
<?php endif; ?>
我需要用一个要点•
和一个 break来分隔每个项目<br/>
。我将如何编辑此代码以反映这些更改?提前致谢。
_山姆