Enhanced Admin Product Grid

来源:互联网 发布:js观察者模式.阮一峰 编辑:程序博客网 时间:2024/06/05 19:18

https://www.magentocommerce.com/magento-connect/enhanced-admin-product-grid.html


18-Jun-2016 06:22:59 UTC] PHP Fatal error:  Call to undefined method Mage_Eav_Model_Resource_Entity_Attribute_Collection::addVisibleFilter() in /home/queenofprom/public_html/app/code/community/TBT/Enhancedgrid/Model/System/Config/Source/Columns/Show.php on line 10


After Magento upgrade with TBT Enhanced Product Grid the following error thrown atSystem > Configuration > Enhanced Product Grid screen:

PHP Fatal error:  Call to undefined method Mage_Eav_Model_Resource_Entity_Attribute_Collection::addVisibleFilter() in app/code/community/TBT/Enhancedgrid/Model/System/Config/Source/Columns/Show.php on line 10


Solution

addVisibleFilter() call in app/code/community/TBT/Enhancedgrid/Model/System/Config/Source/Columns/Show.php at line 10 should be changed from

 

1
->addVisibleFilter();

  to

1
->addFilter("is_visible", 1);

0 0
原创粉丝点击