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.
Create a Country Drop Down in the Frontend of Magento

<?php$_countries= Mage::getResourceModel(‘directory/country_collection’)                                    ->loadData()                                    ->toOptionArray(false) ?><?php if (count($_countries) > 0): ?>    <select name=”country” id=”country”>        <option value=””>– Please Select –</option>        <?php foreach($_countries as…

Category Navigation Listings in Magento

<div id=”leftnav”><?php $helper = $this->helper(‘catalog/category’) ?><?php $categories = $this->getStoreCategories() ?><?php if (count($categories) > 0): ?><ul id=”leftnav-tree” class=”level0″><?php foreach($categories as $category):…

Get The Root Category In Magento

<?php$rootCategoryId = Mage::app()->getStore()->getRootCategoryId();$_category = Mage::getModel(‘catalog/category’)         ->load($rootCategoryId);// You can then get all of the top level categories using:$_subcategories = $_category->getChildrenCategories();?>

1 9 10 11 40