You are viewing an old revision of this post, from May 16, 2018 @ 16:19:53. See below for differences between this version and the current revision.

Magento – Convert attribute type from TEXT to DROPDOWN

This article will show you how to convert attribute type from TEXT (varchar) to DROPDOWN / SELECT (int) in Magento back end. Magento doesn’t have this in-built so we will have to do it in our own way. We will convert our existing attribute which is in TEXT type, to DROPDOWN (select). Let’s say our attribute code is “vendor”, you will need to replace it with your own attribute code in all the code below. WARNING: All the coupon codes that uses this attribute for discounts/promotions will GO AWAY! Please note down all the coupon code Conditions and Actions (which uses this attribute) before converting the attribute. Step 1.) Backup your database.
1
mysqldump -u mysqluser -p mysqldbname > mysqldbname_backup.sql
Step 2.) Export all the values of the attribute you want to convert in a CSV file. For that, create a file vendor.php (your_attribute.php) in your magento root with following code inside it:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require "app/Mage.php";
umask(0);
Mage::app();

$collection = Mage::getModel('catalog/product')
                        ->getCollection()
                        ->addAttributeToSelect('sku')
                        ->addAttributeToSelect('vendor'); //replace vendor with your attribute code

$data = $collection->getData();

foreach ($data as $product) { 
    echo $product['entity_id'] . "," . $product['vendor']."\n";
}
After saving the above code, run it from command line:
1
php vendor.php > vendor.csv
You should now have all the attribute’s data with product ID in the vendor.csv (your_attribute.csv) file. Step 3.) Now get all the unique values you have in the attribute’s data, which we will be filling them as options of select dropdown. Run following mysql command to get all the unique values and copy them in a new file:
1
select distinct value from catalog_product_entity_varchar where attribute_id in (select attribute_id from eav_attribute where attribute_code='vendor'); //replace vendor with your own attribute code
After this step, we have all the attribute’s data in CSV file, and all the UNIQUE attribute values. Step 4.) Note all the settings of the attribute and Delete the attribute from backend Manage Attributes screen. Now create new attribute from there with SAME attribute code but different Frontend Type (Dropdown). Rest all the settings will be same as you had it before. Save it. Go to Manage Attribute Sets page and assign the attribute to the Group it was assigned to before. Step 5.) Now we have to insert all the options to this attribute so that the values are shown in the dropdown. Edit your vendor.php file and replace the code with below:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require "app/Mage.php";
umask(0);
Mage::app();

$installer = new Mage_Eav_Model_Entity_Setup('core_setup');
$installer->startSetup();

//Change this....
$values = array("val1","val2"); //your unique attributes values that you copied in a new file
$attrCode = 'vendor'; //your attribute code here
//........

$values = array_map('utf8_encode',$values); //If you're using special characters
$iProductEntityTypeId = Mage::getModel('catalog/product')->getResource()->getTypeId();
$aOption = array();
$aOption['attribute_id'] = $installer->getAttributeId($iProductEntityTypeId, $attrCode);
for($iCount=0;$iCount<sizeof($values);$iCount++){
   $aOption['value']['option'.$iCount][0] = $values[$iCount];
}
$installer->addAttributeOption($aOption);

$installer->endSetup();
After running this, check your attribute manage page and see if all the values are updated or not. You can find the values in “Manage Labels/Options” tab of attribute’s Manage Attributes screen. Step 6.) Now comes the main part which will insert the attribute values in the database. The old values are stored in catalog_product_entity_varchar (text type), while now the values should go to catalog_product_entity_int (dropdown type). Replace your vendor.php file with below code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require "app/Mage.php";
umask(0);
Mage::app();

$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'vendor'); //change to your attribute code
$allOptions = $attribute->getSource()->getAllOptions(true, true);
foreach ($allOptions as $instance) {
    $myArray[$instance['label']] = $instance['value'];
}

if (($handle = fopen("vendor.csv", "r")) !== FALSE) { //change to your attribute .csv file
    while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
        list($_id, $_value) = $data;

        $product = Mage::getModel('catalog/product')->load($_id);
        $product->setVendor($myArray[$_value]); //setVendor should be setYourAttributeCode

        try {
                $product->getResource()->saveAttribute($product, 'vendor'); //change to your attribute code
        } catch(Exception $e) {
            echo $_id .":". $e->getMessage() ."\n";
        }
    }
    fclose($handle);
}
Run the file, it will take time to complete depending on how many values you had for that attribute. Step 7.) Clear cache, Re-index the indexes.

Revisions

  • May 16, 2018 @ 16:19:53 [Current Revision] by Sharing Solution
  • May 16, 2018 @ 16:19:53 by Sharing Solution

Revision Differences

There are no differences between the May 16, 2018 @ 16:19:53 revision and the current revision. (Maybe only post meta information was changed.)

No comments yet.

Leave a Reply