我正在尝试自定义产品目标网页,以包含同一类别中所有其他产品的所有可滚动视图。我几乎在那里,但它显示的是所有类别的产品,而不仅仅是您正在查看的当前产品的类别。 下面是我添加到我的产品view.phtml的代码,它给了我可滚动容器中的产品。任何人都可以帮我限制它只显示当前类别的产品吗?可以在Product view page
查看其中一个产品页面的示例该版本为magento 1.6.1
我的产品视图自定义
<div class="coll_container">
<!-- "previous page" action -->
<a class="prev browse left"></a>
<div id="collection" class="scrollable">
<?php
$cat_id = Mage::getModel('catalog/layer')->getCurrentCategory()->getId(); // set current category id
$category = Mage::getModel('catalog/category')->load($cat_id);
$productCollection = Mage::getResourceModel('catalog/product_collection')
->addCategoryFilter($category);
$products = $category->getProductCollection()->addCategoryFilter($category)->addAttributeToSelect('*');
?>
<ul>
<?php foreach ( $products as $_product ): ?>
<li class="item"><?php if($_product->isComposite() || !$_product->isSaleable()): ?>
<?php endif; ?>
<a class="item-link" href="<?php echo $_product->getProductUrl() ?>"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'thumbnail')->keepAspectRatio(true)->keepFrame(false)->resize(150,225) ?>" alt="<?php echo $this->htmlEscape($_product->getName()) ?>" width="150" height="225" /></a>
<div class="tooltip">
<span class="indicator"><!-- --></span>
<div class="tooltip-content">
<a href="<?php echo $_product->getProductUrl() ?>"><?php echo $this->htmlEscape($_product->getName()) ?></a>
<!-- Price -->
<p class="price"> <?php echo $this->getPriceHtml($_product, true) ?> </p>
</div><!-- End Tooltip content -->
</div><!-- End Tooltip -->
</li>
<?php endforeach; ?>
</ul>
</div><!-- End Collection -->
<!-- "next page" action -->
<a class="next browse right"></a>
</div><!-- End coll_container -->
答案 0 :(得分:3)
除了两次获取集合的冗余 - $productCollection
和$products
,后者用于循环 - 您的代码将正常工作,集合将仅包含当前类别的产品, 已提供您的目标网页被重写为
catalog/category/view/id/<id> OR
catalog/product/view/id/<id>/category/<id>
但不是,如果将它们改写为
catalog/product/view/id/<id>
这是因为Mage_Catalog_Model_Layer::getCurrentCategory()
取决于是否设置了注册表项current_category
。如果未设置current_category
,则该方法返回当前商店的根类别ID,这解释了为什么您会看到所有类别的产品:
public function getCurrentCategory()
{
$category = $this->getData('current_category');
if (is_null($category)) {
if ($category = Mage::registry('current_category')) {
$this->setData('current_category', $category);
}
else {
$category = Mage::getModel('catalog/category')->load($this->getCurrentStore()->getRootCategoryId());
$this->setData('current_category', $category);
}
}
return $category;
}
在Magento OOB中,注册表项current_category
将设置在不同的位置,但在您的情况下,只有这两个是感兴趣的:
Mage_Catalog_CategoryController::_initCatagory()*
Mage_Catalog_Helper_Product::initProduct()
前者通常仅由
调用Mage_Catalog_CategoryController::viewAction()
后者在几个地方被召唤,其中包括
Mage_Catalog_ProductController::viewAction()
但仅在这种情况下,如果catalog
参数catalog/<id>
已通过。
解决问题的一种可能性是为使用
的目标网页添加重写catalog/product/view/id/1/category/3
样式target_path
s。
如果您只有一小撮产品,可以使用管理员后端中的“URL重写管理”手动执行此操作。
如果您有许多产品,您也可以programmatically。
解决此问题的另一种可能性是,直接从正在查看的产品中获取类别ID并使用它来过滤集合:
$aCategoryId = $this->getProduct()->getCategoryIds();
if (!$aCategoryId) {
echo "This product is not assigned to any categories.";
}
$iCategoryId = $aCategoryId[0];
$oCategory = Mage::getModel('catalog/category')->load($iCategoryId);
$oProductCollection = $oCategory
->getProductCollection()
->addCategoryFilter($oCategory)
->addAttributeToSelect('*')
->addFieldToFilter('entity_id', array('neq' => $this->getProduct()->getId()));
foreach ($oProductCollection as $oProduct) {
var_dump($oProduct->getName());
}
请注意,我添加了一个过滤器,用于从集合中排除已查看的产品本身。
*这不是拼写错误,它至少写成_initCatagory
,而不是_initCategory
至少在CE 1.6.2中(尚未检查其他人) < / p>