Symptoms
After Magento upgrade with TBT Enhanced Product Grid the following error thrown at System -> 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
to
->addVisibleFilter();
->addFilter(
"is_visible"
, 1);
No comments:
Post a Comment