我在 Magento 有一个奇怪的问题。我想在我的标题中添加一个滑块,其中一个类别的所有产品都将显示在滑块中。为此,我刚刚创建了fetured.phtml
文件,并在其中编写了这样的代码
<?php $cat_id = 35; ?>
<?php $category = Mage::getModel('catalog/category')->load($cat_id);?>
<?php $collection = $category->getProductCollection()->addAttributeToSort('position');?>
<?php Mage::getModel('catalog/layer')->prepareProductCollection($collection);?>
<?php $i=0; foreach ($collection as $_product):?>
<?php if($i++%7==0): ?>
<div class="container">
<div id="da-slider" class="da-slider">
<?php endif ?>
<div class="da-slide">
<h2 class="product-name"><?php echo $this->htmlEscape($_product->getName()) ?></h2>
<p class="price"><?php echo $formattedSpecialPrice = Mage::helper('core')->currency($_product->getFinalPrice(),true,false);?></p>
<p><?php echo $_product->_data['short_description']; ?> </p> <br />
<a class="da-link" href="<?php echo $_product->getProductUrl() ?>">Shop Now</a>
<div class="da-img"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(90, 90); ?>" width="120" height="120" alt="<?php echo $this->htmlEscape($_product->getName()) ?>" /></div>
<!--.da-img-->
</div><!--.da-slide-->
<?php endforeach ?>
<nav class="da-arrows">
<span class="da-arrows-prev"></span>
<span class="da-arrows-next"></span>
</nav><!--.da-arrows-->
</div><!--#da-slider-->
</div><!--.container-->
在那之后,因为我想在标题中显示产品,所以我去了catalog.xml
文件app/design/frontend/mytheme/default/layout/catalog.xml
,我做了这样的
<block type="page/html_wrapper" name="top.container" as="topContainer" translate="label">
<label>Page Header</label>
<block type="catalog/product_featured" name="catalog.product.featured" template="catalog/product/featured.phtml" />
<action method="setElementClass"><value>top-container</value></action>
</block>
</block>
在这里,我这样做是为了在滑块的标题中显示特色产品类别。但它没有显示产品。但是,如果我将代码更改为
<block type="page/html_wrapper" name="top.container" as="topContainer" translate="label">
<label>Page Header</label>
<block type="catalog/product_list" name="catalog.product.featured" template="catalog/product/featured.phtml" />
<action method="setElementClass"><value>top-container</value></action>
</block>
它在滑块中显示产品。有人可以告诉我这里有什么问题吗?任何帮助和建议都将非常可观。谢谢