I want to rename an existing attribute's code to something else. The reason is because the attribute field is filled out for 300+ products and I don't want to have to re-import all of those just because I changed the code of an attribute.
|
feedback
|
|
You can edit it in mysql at | |||
|
feedback
|
|
It is much easier to use an upgrade script with the following content for that:
| |||
|
feedback
|
|
Take inspiration the following script :
| |||||
feedback
|
|
After you edit the attribute_code and reindex all you may also find that you need to clear magento caches including Flush Magento Cache and Flush Cache Storage -- or alternately “rm -rf var/cache/*” (see below for caveats). Magento uses caches to store queries referenced by Mage::getSingleton('catalog/product')->loadByAttribute('sku',$sku); and possibly other similar calls. Queries like this one: SELECT 1 AS More about what Flush Magento Cache and Flush Cache Storage do here: http://blog.nexcess.net/2011/05/21/clearing-the-cache-in-magento/ The important paragraph in the article is this
| |||
|
feedback
|