我想根据Magento中的country_of_manufacture属性打印出产品的原产国。当我执行以下操作时:
<?php echo $_product->getCountryOfManufacture(); ?>
它只打印国家/地区代码(例如:美国或IT),而不是完整的国家/地区名称。如何才能显示完整的国家/地区名称,就像我在编辑产品时选择它一样?
答案 0 :(得分:5)
试试这样:
<?php echo $_product->getAttributeText('country_of_manufacture');?>