我有点困境。以下代码正确显示已分配的产品,同时忽略最小定价。 “低至”选项。
<?php
$cat_id = 123; // category id
$category = Mage::getModel('catalog/category')->load($cat_id);
$todayDate = Mage::app()->getLocale()->date()->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
$_products = $category->
getProductCollection()->
addCategoryFilter($category)->
addAttributeToFilter('news_from_date', array('date' => true, 'to' => $todayDate))->
addAttributeToFilter('news_to_date', array('or'=> array(
0 => array('date' => true, 'from' => $todayDate),
1 => array('is' => new Zend_Db_Expr('null')))
), 'left')->
addAttributeToSelect('*');
if (($this->getProductCollection()) && $_products->getSize()): ?>
对最后一行进行微调,正确显示“低至”价格,但最终会在所述类别中添加未分配的产品。
if (($_products = $this->getProductCollection()) && $_products->getSize()): ?>
我错过了什么?感谢
答案 0 :(得分:2)
这是适用于任何感兴趣的人的解决方案。
<?php
if (($_products = $this->getProductCollection()) && $_products->getSize()):
$cat_id = 123; // category id
$category = Mage::getModel('catalog/category')->load($cat_id);
$todayDate = Mage::app()->getLocale()->date()->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
$_products = $this
->getProductCollection()
->addCategoryFilter($category)
->addAttributeToSelect('*')
->addAttributeToFilter('news_from_date', array('date' => true, 'to' => $todayDate))
->addAttributeToFilter('news_to_date', array('or'=> array(
0 => array('date' => true, 'from' => $todayDate),
1 => array('is' => new Zend_Db_Expr('null')))
), 'left');
?>
我有兴趣在同一个文件中使用另一个类别ID重复此过程。清除初始产品系列的最佳方法是什么。