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 Read more…
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 Read more…
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 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 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:
Php Mysql Ajax Jquery JavaScript Mysql
PHP: Get first character of a string
First Method Second Method