2013 August

Remove Top Links in Magento

My Account/app/design/frontend/Your-Interface/Your-Theme/layout/customer.xml My cart and Checkout/app/design/frontend/Your-Interface/Your-Theme/layout/checkout.xml My Wishlist/app/design/frontend/Your-Interface/Your-Theme/layout/wishlist.xml

Get creditcard type in Magento

$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;

1 12 13