Skip to content

Instantly share code, notes, and snippets.

@pierreandreroy
Last active December 24, 2019 15:46
Show Gist options
  • Save pierreandreroy/6251977 to your computer and use it in GitHub Desktop.
Save pierreandreroy/6251977 to your computer and use it in GitHub Desktop.
Get all possible value (dropdown options) of a product attribute in Magento.
<?php
//Possible color value
$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'color'); //"color" is the attribute_code
$allOptions = $attribute->getSource()->getAllOptions(true, true);
foreach ($allOptions as $instance) {
$id = $instance['value']; //id of the option
$value = $instance['label']; //Label of the option
}
?>
@huykon
Copy link

huykon commented Jun 7, 2019

how to do same it with Magento 2?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment