Last active
June 17, 2024 11:53
-
-
Save pierreandreroy/6251977 to your computer and use it in GitHub Desktop.
Get all possible value (dropdown options) of a product attribute in Magento.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 | |
} | |
?> |
Thanks, just what I needed!
It works for me! Now I don't have to hard-code 1878 as a magic number. 👍
Nice its really use full thanks
Thanks a lot ... It works...
can someone say where is the definition for getAllOptions()? Is it possible to rewrite this method. i was to pass custom filter options which should be independent of any layered navigation plugin.?
Would this be part of the install script, I'm still struggling to get it to pop up on my frontend. Also, can this also apply to a multi select option.
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
nice !