Classic Blog List

Style & publish your blog list anywhere on your site using a bunch of Scalia's blog options. Choose from 8 awesome bloglist styles, including grids & carousel. Select categories to be displayed, number of posts, pagination style and much more. Check Scalia's blog features in the sidebar.
To Display The Currency In Frontend in Magento

Currency In Dropdown format In page.xml add the Block if not exist <block type=”directory/currency” name=”currency” as=”currency” template=”directory/currency.phtml”/> Template File /app/design/frontend/template/Your_Interface/YOUR-TEMPLATE-NAME/template/directory/currency.phtml…

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 19 20 21 40