2013-07-08 113 views
0

我是新來magento,我創建了屬性語言從magento後端。 按照這個。客戶>屬性管理器顯示客戶屬性到前端magento

屬性具有輸入類型下拉列表。

我想在我的前端顯示在phtml文件從用戶輸入。

我該怎麼做。

感謝

+0

我看到的只是管理目錄屬性下tab.Are你在說什麼嗎?目錄 - >屬性 - >管理屬性 –

+0

請參閱客戶下的屬性管理器。 客戶 - >屬性管理器 - >客戶屬性 – wahab

+0

哪個版本? –

回答

1

試試這個

$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'language'); //here, "language" is the attribute_code 
$allOptions = $attribute->getSource()->getAllOptions(true, true); 
foreach ($allOptions as $instance) { 
    $myArray[$instance['value']] = $instance['label']; 
} 
print_r(($myArray)); 
+0

不,它不工作。我也替換我的attribute_code。 其實它不是一個產品屬性代碼。 其客戶屬性**客戶**選項卡 – wahab

+0

它是擴展名Custom_attributemanager – wahab

+0

然後對不起,我沒有擴展和沒有information.you可以連接他們的支持團隊爲這個問題。 –