0
我使用Magento,我需要幫助在前端使用屬性標籤的翻譯! 我用這對我marketplace.phtml加載屬性標籤Magento如何使用屬性標籤上的翻譯?
<?php
$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'etat_verres');
$allOptions = $attribute->getSource()->getAllOptions(true, true);
foreach ($allOptions as $instance) { if($instance['label']) {
echo $instance['value'] // to show the value
echo $instance["label"] // to show the label
} }
?>
的問題是,Magento的使用管理值,而不是法國的值或英語值。
在此先感謝!
此致,
約翰
非常感謝你^^ –