thienphucvx

Magento certified developer

Adding shipping costs to cart automatically in Magento

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   <?xml version=”1.0″?> <config> <modules> <Inbusiness_Cart> <active>true</active> <codePool>local</codePool> </Inbusiness_Cart>…

Automatically create and assign customer group in magento

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 <?xml version=”1.0″?> <config> <modules> <Inbusiness_Group> <version>1.0.0</version> </Inbusiness_Group> </modules> <global> <models> <Inbusiness_Group> <class>Inbusiness_Checkout_Model</class> </Inbusiness_Group> </models> <events> <customer_save_after>…

Remove favicon in magento

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 <code><link rel=”icon” href=”<?php echo $this->getSkinUrl(‘favicon.ico’) ?>” type=”image/x-icon” /> <link rel=”shortcut icon” href=”<?php echo $this->getSkinUrl(‘favicon.ico’) ?>” type=”image/x-icon” /></code>   3/ The final step is : clear magento caches and session….

Please Add Widget