如何检查Magento 1.9.0.1中的产品是否为新产品?
我试过了:
<?php if($_product->getNewProduct()) { ?>
...my HTML code...
<?php } ?>
但它没有用。它有什么问题?
答案 0 :(得分:2)
我只想说is new depends on attribute
e和news_from_dat
news_to_date
$todayStartOfDayDate = Mage::app()->getLocale()->date()
->setTime('00:00:00')
->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
$todayEndOfDayDate = Mage::app()->getLocale()->date()
->setTime('23:59:59')
->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
$collection = Mage::getResourceModel('catalog/product_collection');
$collection
->addAttributeToFilter('news_from_date', array('or'=> array(
0 => array('date' => true, 'to' => $todayEndOfDayDate),
1 => array('is' => new Zend_Db_Expr('null')))
), 'left')
->addAttributeToFilter('news_to_date', array('or'=> array(
0 => array('date' => true, 'from' => $todayStartOfDayDate),
1 => array('is' => new Zend_Db_Expr('null')))
), 'left')
->addAttributeToFilter(
array(
array('attribute' => 'news_from_date', 'is'=>new Zend_Db_Expr('not null')),
array('attribute' => 'news_to_date', 'is'=>new Zend_Db_Expr('not null'))
)
)
->addAttributeToFilter('entity_id',$_product->getId())
->addAttributeToSort('news_from_date', 'desc')
->setPageSize(1)
->setCurPage(1);
if($count($collection)>0){
//new products
}
答案 1 :(得分:2)
<?php
$current_date=M age::getModel( 'core/date')->date('Y-m-d');
$from_date = substr($_product->getNewsFromDate(), 0, 10);
$to_date = substr($_product->getNewsToDate(), 0, 10);
$new = ($current_date >= $from_date && $current_date <=$ to_date) ||
($from_date=='' && $current_date <=$ to_date && $to_date !='' ) ||
($from_date !='' && $current_date>= $from_date && $to_date == '') ;
//echo $new; ?>
<?php if($new==1 ) { ?>
<label for="">
<?php echo $this->__('New') ?></label>
<?php } ?>
以上代码有3种情况:
答案 2 :(得分:1)
不幸的是,你不能那么简单。没有方法可以检查产品是否为新产品。
为新产品定义的块类是Mage_Catalog_Block_Product_New
,在app\code\core\Mage\Catalog\Block\Product\New.php
定义。如果你在那里看一下,那么你会明白,没有好的方法对你的使用有用。
这里定义的主要方法是新产品收集方法。如果您查看该方法,即在_getProductCollection()
上,您可以看到它使用开始日期和结束日期(即我们为每个产品设置)来进行收集。因此,您可以实现的最佳方式是检查产品开始日期和结束日期,它是在我们所需的日期之内,然后在if
语句中执行代码。这将是一些看起来像这样的东西。
<?php
if (date("Y-m-d") >= substr($_product->getNewsFromDate(), 0, 10)
&& date("Y-m-d") <= substr($_product->getNewsToDate(), 0, 10)) {
//your code comes here
}
?>
有关详细信息,您可以使用此 thread
答案 3 :(得分:1)
我这样解决了:
<?php
$current_date = Mage::getModel('core/date')->date('Y-m-d');
$from_date = substr($_product->getNewsFromDate(), 0, 10);
$to_date = substr($_product->getNewsToDate(), 0, 10);
$new = ($current_date >= $from_date && $current_date <= $to_date) || ($from_date == '' && $current_date <= $to_date && $to_date != '') || ($from_date != '' && $current_date >= $from_date && $to_date == '') ;
?>
<?php if($new == 1) { ?>
<img src="...
<?php } ?>