If you want to change gender dropdown to radio button in magento this tutorial will help you. By default magento having a gender dropdown on registration page. On registration form magento uses widgets, you can see following lines on template register.phtml. So you can found gender widget template file on template\customer\widget folder. Now to change gender dropdown to radio button replace below code into the file. Hope this tutorial will …
Fatal error: Call to a member function toOptionArray() on a non-object
I have installed a new module then suddenly I got a fatal error in admin like Call to a member function toOptionArray() on a non-object in app/code/core/Mage/Adminhtml/Block/System/Config/Form.php on line 46. To solve this issue go to app\code\core\Mage\Adminhtml\Block\System\Config\Form.php Now find the following on line 463 replace this with below code: Hope this tutorial will help you to solve the Fatal error: Call to a member function toOptionArray() on a non-object issue.
Change shipping rate based on shipping address in Magento
In this tutorial I will show you how to change shipping rate based on shipping address in Magento. I have created a custom module to set the shipping rate based on shipping address country. I have added an observer on save shipping address after. I have added an event in config.xml of checkout. Below is the code of the observer of the event. Here you can set the shipping rate …
Add Pagination in admin for Listing in WordPress
In this tutorial I will explain how to add pagination in admin for listing in WordPress. In many WordPress application, we need to deal with list of records in custom plug-in. We need to display all the records but as the records grow with time it slow down the system if we fetch and display all of them. So we have to organize the records by limiting the number of …
Keep jQuery Datepicker in same place on resize
This tutorial will help you to keep jQuery Datepicker in same place on resize. I have used multiple jQuery UI datepickers in a simple layout in responsive website page. Issue: When I have open the datepicker by clicking on the input field and then resize the window, the datepicker does not stay along with the input field. As there are multiple datepicker fields so it must be necessary to stay …
Flash Notification Messages in Magento
In this tutorial I will explain how to set flash notification messages in Magento. Flash message class and functions to display success, error, warning and notice message is inbuilt in Magento. For example when you submit the contact form and an error occurred below message will display. Now when you try again and successfully submitted then following message will display. The contact form module redirects the visitor back to the …
How to Skip Cart Page in Magento
In this tutorial I will explain how you can skip cart page in Magento. If you want to go straight on checkout page on product add to cart button click, this tutorial will help you. Create a custom module and change in config.xml file and create an event. app/code/local/Yourmodule/Cart/etc/config.xml Now create a observer file and add below code. /app/code/local/Yourmodule/Cart/Model/Observer.php I hope this tutorial will help you to skip cart page …
How to Modify Magento TAX Calculation
In this tutorial I will explain how you can modify magento TAX calculation. Sometimes we need to modify the magento tax calculation according to your requirement for specific products or categories. To modify in Tax Calculation get a copy of the file code\core\Mage\Tax\Model\Calculation.php into community as app\code\community\Mage\Tax\Model\Calculation.php. Now find calcTaxAmount function on line no 600. Now change in this function as per your requirement and create a log table to …