Naveed Ramzan

How to disable the Compare products functionality

How to disable the Compare products functionality You can disable the Compare products functionality in Magento by following these steps: Edit app/code/core/Mage/Catalog/Helper/Product/Compare.php and change the following code:  public function getAddUrl($product) { return $this->_getUrl(’catalog/product_compare/add’, $this->_getUrlParams($product)); } to public function getAddUrl($product) { //return $this->_getUrl(’catalog/product_compare/add’, $this->_getUrlParams($product)); return false; } Edit ./app/design/frontend/base/default/layout/catalog.xml (if you are using a different Magento …

How to disable the Compare products functionality Read More »

How to speed up Magento

How to speed up Magento Many Magento issues are caused by slow performance. The recommended way to speed up Magento’s performance is to enable its Compilation function.  The performance increase is between 25%-50% on page loads. You can enable Magento Compilation from your Magento admin panel > System > Tools > Compilation.

How to reset Magento Admin Password

How to reset Magento Admin Password Go to your cPanel > phpMyAdmin, select your Magento database, click the SQL tab and paste this query: UPDATE admin_user SET password=CONCAT(MD5(‘admin123’), ‘:sG’) WHERE username=’AdminUsername’; Note: You have to change newpass in the MD5(‘admin123’) with your new password, and change *AdminUsername* to your Magento admin username. Execute the query …

How to reset Magento Admin Password Read More »