Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7508777
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T22:44:15+00:00 2026-05-29T22:44:15+00:00

I am working in a new Filter by Product module in Magento, i have

  • 0

I am working in a new “Filter by Product” module in Magento, i have a situation where i should retrieve all attributes and their values. I Googled this and found the below code

 
$product = Mage::getModel('catalog/product');

$attributes = Mage::getResourceModel('eav/entity_attribute_collection')
      ->setEntityTypeFilter($product->getResource()->getTypeId())
      ->load();

      //      ->addFieldToFilter('attribute_code', 'color') 

$attribute = $attributes->getFirstItem()->setEntity($product->getResource());

/* @var $attribute Mage_Eav_Model_Entity_Attribute */

$attr = $attribute->getSource()->getAllOptions(true);

foreach ($attr as $att) {
    echo " Label : ".$att['label']." Value : ".$att['value']."";
}
 

but this retrieves only the label and value of last attribute from list of all available attributes.

how to i get all the attributes? what am i doing wrong in this code?

Thanks,
Balan

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T22:44:16+00:00Added an answer on May 29, 2026 at 10:44 pm

    Try this:

    $attributes = Mage::getSingleton('eav/config')
        ->getEntityType(Mage_Catalog_Model_Product::ENTITY)->getAttributeCollection();
    
    // Localize attribute label (if you need it)
    $attributes->addStoreLabel(Mage::app()->getStore()->getId());
    
    // Loop over all attributes
    foreach ($attributes as $attr) {
        /* @var $attr Mage_Eav_Model_Entity_Attribute */
        // get the store label value
        $label = $attr->getStoreLabel() ? $attr->getStoreLabel() : $attr->getFrontendLabel();
        echo "Attribute: {$label}\n";
    
        // If it is an attribute with predefined values
        if ($attr->usesSource()) {
    
            // Get all option values ans labels
            $options = $attr->getSource()->getAllOptions();
    
            // Output all option labels and values
            foreach ($options as $option)
            {
                echo "    {$option['label']} (Value {$option['value']})\n";
            }
        }
        else
        {
            // Just for clarification of the debug code
            echo "    No select or multiselect attribute\n";
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to add some custom filter methods to my magento module. I though
I have been working on a generic solution to filter data using Nhibernate. The
I have an ASP.NET http module that adds a Response Filter and does some
I have been working with the DevExpress Filter TreeList code and am curious about
In Git I can do this: 1. Start working on new feature: $ git
Im new to working with Domain Models so forgive me for asking an elementary
Working on a new app and using restful-authentication. I was trying to make it
I am new to working with Spring on regular basis so I had a
Started working on a new application this week that is running the latest rails
I am working on a new application that uses a jet (MS Access) database.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.