I'm running into a problem. I want to remove the weight attribute from the front-end of my Magento webshop, but it keeps telling me that the attribute is reserved by system.
The attribute code 'weight' is reserved by system. Please try another attribute code
I have tried multiple options to make it a normal attribute
Changing is_user_defined in table eav_attribute in the database to 1 (http://blog.chapagain.com.np/magento-how-to-delete-system-attribute/)
Edit in app/code/core/Mage/Catalog/etc/config.xml
<weight><external>1</external><required>1</required></weight>to<weight><external>1</external><required>0</required></weight>(http://www.magentocommerce.com/boards/viewthread/21975/)
Is there another solution?