Pregunta

I created a custom attribute in my products page. The attribute is a dropdown list.

The name of the attribute is soldby.

I want to extract the value of that attribute.

I wrote:

$seller= Mage::getModel('catalog/product')->load($item->getProductId()) ->getData('soldby');

This returns me null.

If I do something similar to an attribute which is a textfield, it works fine.

How can I extract the option selected ?

Please help.

¿Fue útil?

Solución

$product = Mage::getModel('catalog/product')->load($item->getProductId());  

$product->getAttributeText('soldby');

Otros consejos

Please try this:

$seller= Mage::getModel('catalog/product')->load($item->getProductId());
$seller->getAttributeText('soldby');
Licenciado bajo: CC-BY-SA con atribución
No afiliado a magento.stackexchange
scroll top