Magento
Magento: Sort By Price: Low to High and High to Low
For his functionality navigate through /app/design/frontend/default/your-theme/template/catalog/product/list/toolbar.phtml file. Find: And Replace with: Magento sort by special price (disounted product) on product list page dropdown (toolbar.phtml)
Magento
Magento: Template path not showing
Problem:- For some reason the template path hints are not displayed. I went to the admin panel and turned them off and on again, then cleared the cache. But they are still not displaying. Solution:- Try to check if your configuration backend for System > Configuration > Advanced > Developer Read more…
Magento
Magento: Please make sure your passwords match magento 1.9.1.0
Problem Well this is a common problem that is encountered in Magento 1.9.1.0. When a User registers (doesn’t matter if its during checkout or from the Create an Account link) the user keeps getting the password mismatch error even though the password is re-entered correctly. Reason The validation method was Read more…
Magento
Magento: Remove Shipping Method and Payment Method from invoice pdf
If you want to completely remove the Shipping Method and Payment Method section from invoice pdf in Magento. Override the following file from core to in local folder as follow: app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php app/code/local/Mage/Sales/Model/Order/Pdf/Abstract.php Comment out some chunks of code in: protected function insertOrder(&$page, $obj, $putOrderId = true)
Magento
Magento: 404 page not found when trying to access CMS -> Pages in admin panel
You are getting a 404 on CMS pages because of the remains of old store views still hanging around in the database after deleting store views from magneto admin, to clean up ( delete ) old unused CMS pages for store views you have deleted run this MySQL cmd.
Magento
Magento: TypeError: image.elevateZoom is not a function
in Magento 1.9 CE, if we browse the product reviews page, it displays an error TypeError: image.elevateZoom is not a function This is because, magento is using image zoom in product page using this plugin I’ve got the same issue – not that it’s a complete solution but it certainly Read more…
Magento
Magento: How to Add Bundle Product
http://www.magentocommerce.com/magento-on-the-fly/magento-bundle-11/
Magento
Magento: Get collection of products have related products
Some Time we need to to get the the collection of products have related products: You can do the job by following steps 1- Create a new blank file in magento root directory named: get-product-detail.php 2- Copy and paste the following code in that file: 3-run the file in your Read more…
Magento
Magento: How to add check box field in Admin custom module form and populate the check box
How to add Checkbox field in Form: Open app/code/local/Namespace/CustomModuleName/Block/Adminhtml/ CustomModuleName /Edit/Tab/Form.php and add the below code. How to re-populate the checkbox on Edit page: Just add the extra line in ablove code like below: