To get different size of images from wordpress to magento blog use those available image functions getThumbnailImage() getMediumImage() getLargeImage() getFullSizeImage() getPostThumbnailImage() getAvailableImage() getImageByType($type = ‘thumbnail’)… Continue Reading
Category: Magento
Disable Admin Notifications in the Magento Back-end
To disable Magento backend notification Login to backend System->Configuration->Advanced Find “Mage_AdminNotification” and set the option to disable… Continue Reading
Call to Undefined Method
After Magento upgrade with TBT Enhanced Product Grid the following error thrown at System > Configuration > Enhanced Product Grid screen: Mage_Eav_Model_Resource_Entity_Attribute_Collection::addVisibleFilter() 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 ->addVisibleFilter(); to ->addFilter(“is_visible”, 1);… Continue Reading