magento - 在搜索结果页面中获取产品数量

时间:2014-02-26 11:59:22

标签: magento

我想在搜索结果和代码页中获取产品数量 此代码适用于类别页面,但不适用于搜索结果和标记

$this->getLoadedProductCollection()->count();

我还检查了这段代码,但没有结果

$this->getCollection()->count();

我想在list.phtml文件中使用它

2 个答案:

答案 0 :(得分:2)

您好检查此文件

app / design / frontend / base / default / template / catalogsearch / result.phtml

<?php echo $this->getResultCount(); ?>

希望这能帮到你......

答案 1 :(得分:1)

对于搜索结果页,请尝试以下代码:

<?php echo $this->helper('catalogsearch')->__('<strong>%d item(s)</strong>', $this->getResultCount()); ?>

要获取目录/产品/ list.phtml页面上的产品总数,请使用以下代码:

<?php $_productCollection = $this->getLoadedProductCollection(); 
$count = $_productCollection->getSize(); 
echo $count; ?>