This tutorial is going to show you how to add and and manage Multiple Stores on your Magento website. Multiple Stores functionality allows you to power any number of stores or...
Hello Friends If you want to get cart subtotal and quantity in Magento then you can use my below script $items = Mage::getSingleton(‘checkout/session’)->getQuote()->getAllItems();foreach($items as $item) {echo ‘ID: ‘.$item->getProductId().’‘;echo ‘Name: ‘.$item->getName().’‘;echo...
Hello Friends If you want to Remove .html from URL in Magento then you can use my below method If you want to remove .html from all Magento’s category URL...
Hello FriendsIf you want to change the page tittle in Magento then you can use my below method,Which are given as follows:(1) CMS page: Go to backend and open CMS >...
Hello FriendsIf you want to call phtml file from controller in magento then use my below script<?phpclass Namespace_Module_DisplayController extends Mage_Core_Controller_Front_Action{public function popupAction(){$block = $this->getLayout()->createBlock('core/template')->setTemplate('zipcode/popup.phtml');$this->getResponse()->setBody($block->toHtml());}}?>...
Hello FriendsIf you want to get database details in magento then you can use my below script$config  = Mage::getConfig()->getResourceConnectionConfig("default_setup");        $_host = $config->host;        $_uname = $config->username;        $_pass = $config->password;        $_dbname = $config->dbname;       ...
Hello FriendsIf you want to get order count of particular customer in magento from customer id then you can use my below script$customer_id = 5;$_orders = Mage::getModel('sales/order')->getCollection()->addFieldToFilter('customer_id',$customer_id);                       $_orderCnt = $_orders->count(); //orders...
Hello FriendsIf you want to get admin path name then use my below codeecho (string)Mage::getConfig()->getNode('admin/routers/adminhtml/args/frontName');It will return admin or your admin custom path nameLet me know your comment if its not...
Hello FriendsHere, I will be showing you how you can read XML nodes from config.xml file of your module. It’s through the Magento way with Mage::getConfig()->getNode() function. :)Here is the XML...
Hello FriendsIf you want to know about keyword like Global, Website, Store, Store View in magento then read my below article Global: This refers to the entire installation.    Website: Websites are ‘parents’ of stores.  A...
Hello FriendsIF you want to add external database connection or custom database connection or multiple database connection in magento then you can use below config.xml file from app>code>codepool>packagename>modulename>etc>config.xmlAdd the following code  to your config.xml under...
Hello FriendsIn Magento, there are two columns in sales_flat_order table.These are state and status, They both are different. State is used by magento to tell if the order is new, processing,...
Hello FriendsIf you want to change product image on mouse hover of more view image then you can use my below scriptStep1. open file on location given belowapp/design/frontend/default/default/template/catalog/product/view/media.phtmlStep2. Search the code...
Hello FriendsIf you want to create customer programmatically magento then you can use my below script.$websiteId = Mage::app()->getWebsite()->getId();$store = Mage::app()->getStore();$customer = Mage::getModel("customer/customer");$customer->website_id = $websiteId; $customer->setStore($store);$customer->firstname = "keyur";$customer->lastname = "shah";$customer->email = "keyurshah.it@gmail.com";$customer->password_hash = md5("test123");$customer->save();Let...
Hello FriendsIf you want to Removing duplicate product image in Magento then you can use my below script.While you importing product this problem occur.you can also use this script when you have...
Hello FriendsTo remove the Estimate shipping and taxes block you have to follow stepIn order to do this you can copy app/design/frontend/base/default/layout/checkout.xml intoapp/design/frontend/default/grayscale/layout/ (you need to replace default/grayscale with the path to...
Hello FriendsIn Magento ( System > Configuration > Store Email Addresses) we have a section for storing various store email addresses used in various sections like Orders,Sales etcIf you want to...
Hello FriendsTo protect your Magento backend against hackers and brute-force attacks, we recommend that you change the default URL to the Magento Admin Panel. It is a quick way to add...
Hello FriendsI am writing here an important code snippet for getting the database connection details used in Magento$config  = Mage::getConfig()->getResourceConnectionConfig("default_setup");        $_host = $config->host;        $_uname =...
Hello All,I am writing here the code to get various base directory paths, which might be useful.Assuming the directory is named ‘magento’ where your site is present and its the root...