How to uninstall Not2Order from Magento?
NOTE: MAKE SURE YOU HAVE A PROPER BACKUP BEFORE YOU EDIT THE DATABASE!!
This task is separated in two parts:
1. Removing N2O on database level
2. Removing N2O onfFiles level
1. Database level
1.0
Delete N2O information from `core_config_data` and `core_resource` tables
1.1
SELECT * FROM `core_resource` WHERE `code` LIKE '%not2order_setup%'
in case search result in not empty then:
DELETE FROM `core_resource` WHERE `code` LIKE '%not2order_setup%'
1.3
Delete attribute hide_price
SELECT * FROM `eav_attribute` WHERE `attribute_code` like '%not2order%'
delete the entry with the attribute_code not2order_hide_price
1.4
Delete attribute allowed_to_ordermode
SELECT * FROM `eav_attribute` WHERE `attribute_code` like '%not2order%'
delete the entry with the attribute_code not2order_hide_orderbtn
1.4
The eav_attribute tabel constraint 'ON DELETE CASCADE' should cleanup the rest of the tables. You could check this by looking for the attribute_id's you've written down earlier. You shouldn't be able to find any records with the attribute_id's you've written down.
2. Files level
See attached screenshot for the FTP tree. The folders that are outlined must be updated using
the original sources from your Magento version.