获取完整的国家/地区名称以回显country_of_manufacture属性

时间:2013-07-15 19:42:43

标签: magento magento-1.7

我想根据Magento中的country_of_manufacture属性打印出产品的原产国。当我执行以下操作时:

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

它只打印国家/地区代码(例如:美国或IT),而不是完整的国家/地区名称。如何才能显示完整的国家/地区名称,就像我在编辑产品时选择它一样?

1 个答案:

答案 0 :(得分:5)

试试这样:

<?php echo $_product->getAttributeText('country_of_manufacture');?>