In my case, I need to adding shipping cost of Webshopapps Matrix Rates to cart automatically. If you meet the same requirement , you can follow these steps to make it done: 1/Create a xml file to declare new module: app/etc/modules/Inbusiness_Cart.xml 2/Create app/code/local/Inbusiness/Cart/etc/config.xml 3/ Create app/code/local/Inbusiness/Cart/Model/Observer.php…
Have you ever stuck with automatically select shipping method in magento ? For example in this tutorial, we assumed that we had only one shipping method : free-shipping. So, we need to set it as default shipping method and ignore shipping step. We can make it done with these simple…
This tutorial will help you to answer the question “How we can Automatically create and assign customer group in magento ?”. For creating and assigning customer group, we have to create : 1/ Create app/code/local/Inbusiness/Group/etc/config.xml 2/Create app/code/local/Inbusiness/Group/Model/Observer.php to create specific customer group (customer email) and assign it to the…
How can we check show payment method magento by using codes ? In default function of magento, the owner store can disable or enable payment method. But in some special cases, for instance, their requirement is disabling this payment method for B2B customer and showing this method for B2C customer….
There are two ways to applying tax class to all products. 1/ The simple way is using update attribute product function of magento Log in to your admin panel, then select : Catalog->Manage Products Then you can click Select All, and from the Actions drop down on the right, choose…
In order to remove favicon completely without replacing it in magento, we need to do 3 steps: 1/ First step : Remove all the favicon from ALL the folders 2/ Remove these codes in : app/design/frontend/default/your_theme/template/page/html/head.phtml 3/ The final step is : clear magento caches and session. Don’t forget…