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.
How to remove please select from custom option drop down in Magento

Open: appcodecoreMageCatalogBlockProductViewOptionsTypeSelect.php Alter the following lines:if ($_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_DROP_DOWN) {$select->setName(‘options[‘.$_option->getid().’]‘)->addOption(”, $this->__(‘– Please Select –’));}To:if ($_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_DROP_DOWN) {$select->setName(‘options[‘.$_option->getid().’]‘);// ->addOption(”, $this->__(‘– Please Select…

How to get cart subtotal and quantity in Magento

Get all items information in cart// $items = Mage::getModel(‘checkout/cart’)->getQuote()->getAllItems();$items = Mage::getSingleton(‘checkout/session’)->getQuote()->getAllItems();foreach($items as $item) {echo ‘ID: ‘.$item->getProductId().’‘;echo ‘Name: ‘.$item->getName().’‘;echo ‘Sku: ‘.$item->getSku().’‘;echo…

1 26 27 28 40