August 16, 201312:47 Get creditcard type in Magento Magento | Uncategorized $order_id = 100; //order id goes here$_order = Mage::getModel(‘sales/order’)->load($order_id); $_cctype = ”;if(!empty($_order)){ $_cctype = $_order->getPayment()->getCcTypeName();}echo $_cctype; Read more
August 16, 201312:46 How to move top links in Content in Magento Magento | Uncategorized If local.xml does not exist,create it /you_theme/layout/ and add the following code Ctalog.xml{{block type=”catalog/navigation” name=”catalog.topnav” template=”catalog/navigation/top.phtml”}} Read more
August 9, 201320:39 Stock Status Index process is working now. Please try run this process later in magento Magento | Uncategorized Delete the locks files from var/locks or Delete var folder and create it again and give 777 premission then tried… Read more
August 6, 201316:13 Magento get current url with and without parameters Magento | Uncategorized You can get the current page URL and it’s parameters (if any) by using getCurrentUrl() method in Magento. Below code… Read more
August 1, 201318:01 Magento: Create Catalog Price Rule Programmatically Magento | Uncategorized Here, you will see how to create Catalog Price Rule in Magento through code. Catalog Rules are applied on products… Read more
July 29, 201318:06 Useful Code Snippets Magento | Uncategorized Create Order Below is the php code to create an order in magento. It requires a valid customer account with… Read more