Magento主页热门产品

时间:2013-09-18 14:10:58

标签: magento magento-1.7

大家好我想在magento 1.7.1安装的主页上显示4个热门产品。 (我可以通过将它们放入一个类别来进行选择)。

我通过创建一个名为popularhome的隐藏类别并添加了4个产品来设置它。

我通过使用:

将其包含在我的主页模板的静态块中
{{block type="catalog/product_list" column_count="4" category_id="17" template="catalog/product/listhome.phtml"}}

我的listhome.phtml模板如下所示:

<div class="row popularproducts">

<?php
    $_productCollection=$this->getLoadedProductCollection();
    $_helper = $this->helper('catalog/output');
?>
<?php if(!$_productCollection->count()): ?>
<div class="alert fade in">
  <a class="close" data-dismiss="alert">×</a>
  <?php echo $this->__('There are no products matching the selection.') ?>
</div>
<?php else: ?>
    <?php // List mode ?>
    <?php if($this->getMode()!='grid'): ?>
    <?php $_iterator = 0; ?>
    <?php else: ?>
    <?php // Grid Mode ?>
    <?php $_collectionSize = $_productCollection->count() ?>
    <?php $_columnCount = $this->getColumnCount(); ?>
    <?php $i=0; foreach ($_productCollection as $_product): ?>
        <?php if ($i++%$_columnCount==0): ?>
            <?php endif ?>
            <div class="c3">
            <?php if(($i-1)%$_columnCount==0): ?><?php elseif($i%$_columnCount==0): ?><?php endif; ?>
                <div class="thumbnail">
                <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image thumbnail"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(225); ?>" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>

                <div class="caption">
                    <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 if($_product->getRatingSummary()): ?>
                    <?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
                    <?php endif; ?>
                    <?php echo $this->getPriceHtml($_product, true) ?>
                </div>
                </div>
                </div>

            <?php if ($i%$_columnCount==0 || $i==$_collectionSize): ?>


        <?php endif ?>
        <?php endforeach ?>
    <?php endif; ?>


<?php endif; ?>

</div>

然而,这仅显示4种产品中的2种,但我无法弄清楚为什么?有人看到我遗失的任何东西吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

首先,您需要检查您希望出现在类别页面中的产品

他们真的属于那些类别吗?

之后确保Backend > Manage Categories > Edit categories > Display settings >

Anchor = yes然后重新编制目录索引。

验证您是否需要交叉检查catalog_category_product和catalog_category_product_index。

如果在这些表中正确映射了类别ID和产品ID,那么您应该很高兴。

希望这对你有所帮助!