0
私はMagentoを使用しており、属性ラベルの翻訳をフロントエンドで使用するのに助けが必要です! は、私はこの問題は、Magentoのは、フランスの値または英語の値管理値を使用していないということです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
} }
?>
属性ラベルをロードするために私のmarketplace.phtmlでこれを使用しています。
ありがとうございます! $this->__
を使用して
敬具、
ジョン
ありがとうございました^^ –