tôi muốn xóa một thuộc tính sản phẩm từ bảng eav một cách thực tế. Tôi đã nhận được một mã đã xóa thuộc tính khách hàng.
Tôi muốn giống như mã này, đó là xóa thuộc tính sản phẩm.
<?php
error_reporting(E_ALL | E_STRICT);
$mageFilename = 'app/Mage.php';
require_once $mageFilename;
Mage::setIsDeveloperMode(true);
umask(0);
Mage::app();
Mage::app()->setCurrentStore(Mage::getModel('core/store')->load(Mage_Core_Model_App::ADMIN_STORE_ID));
$setup = new Mage_Eav_Model_Entity_Setup('core_setup');
try {
$custAttr = 'user_name'; // here enter your attribute name which you want to remove
$setup->removeAttribute('customer', $custAttr);
echo $custAttr." attribute is removed";
}
catch (Mage_Core_Exception $e) {
$this->_fault('data_invalid', $e->getMessage());
}
?>
làm ơn giúp tôi.