Our client needs a module, so he can simply define on backend or define on the block code, what he wants to display, like best sellers, or featured, or most viewed, or latest, or random products in a li list.
He is actually running a wine store, where they will be placing 3 -5 product sliders on the homepage, and all 5 will be with different functionality, like one might be best sellers from Category A and the other might be most viewed from Category Z, etc.
I started looking at new.phtml to copy the product pulling code.
And reached here,
<?php
$_productCollection=$this->getLoadedProductCollection();
$_helper = $this->helper('catalog/output');
?>
<?php if(!$_productCollection->count()): ?>
<?php else: ?>
<div class="category-products">
<?php $_collectionSize = $_productCollection->count() ?>
<?php $_columnCount = $this->getColumnCount(); ?>
<?php $i=0; foreach ($_productCollection as $_product): ?>
<?php if ($i++%$_columnCount==0): ?>
<ul class="products-grid">
<?php endif ?>
<li class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
<a href="<?php echo $_product->getProductUrl() ?>"</a>
<h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>"><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></a></h2>
<?php echo $this->getPriceHtml($_product, true) ?>
<div class="actions">
<?php if($_product->isSaleable()): ?>
<button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
<?php else: ?>
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
<?php endif; ?>
</div>
</li>
<?php if ($i%$_columnCount==0 || $i==$_collectionSize): ?>
</ul>
<?php endif ?>
<?php endforeach ?>
<?php endif; ?>
</div>
I made a file, list_new.phtml and placed the above code.
And then went to the CMS page and pasted this,
{{block type="catalog/product_list" name="home.catalog.product.list" alias="products_homepage" coumn_count="4" category_id="39" template="catalog/product/list_new.phtml"}}
Its pulling the product fine, but Im not able to understand, which line of code to alter, so I can different collection types, best or latest or most viewed,etc .
Can anyone help ?
catalog/product_listblock you need create your own blocks for each your case (best sellers from Category A, most viewed from Category Z, etc.). – Zyava Nov 12 '11 at 18:26