4x Masonry Grid

Style & publish your blog list anywhere on your site using a bunch of Scalia's blog options!

<?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…

August 23, 2013 Read more

<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):…

August 23, 2013 Read more

<?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();?>

August 23, 2013 Read more

<?php$_category = Mage::getModel(‘catalog/category’)->load(47);$_productCollection = $_category->getProductCollection();if($_productCollection->count()) { foreach( $_productCollection as $_product ): echo $_product->getProductUrl(); echo $this->getPriceHtml($_product, true); echo $this->htmlEscape($_product->getName()); endforeach;}?>

August 23, 2013 Read more
1 3 4 5 14