Untuk menghapus custom attribute tanpa menggunakan installer atau SQL query, buat satu file, misalnya test.php dengan isi di bawah ini:
x 1<?php
2error_reporting(E_ALL | E_STRICT);
3
4require_once './app/Mage.php';
5umask(0);
6Mage::app();
7$setup = new Mage_Eav_Model_Entity_Setup('core_setup');
8$setup->removeAttribute( 'catalog_product', 'your_custom_attribute_code' );
9//ganti your_custom_attribute dengan code attribute yang diinginkan
Simpan file test.php di root folder magento. Misalkan url untuk project anda adalah http://magento_project.com
, maka untuk mengeksekusi file test.php cukup jalankan http://magento_project.com/test.php
, maka attribute sudah berhasil dihapus.