昨天遇到一个问题:不管我怎么改发现同一个问价大多数css样式都可以加载但是我写的那个不能加载,仔细检查了没有任何语法错误,后台我把我那段加载不到的css移到文件开头就可以加载了,原因不清楚,但问题总算解决了.
magento - 所有的新产品,热卖产品,特价产品代码
2012年11月1日星期四 Asia/Shanghai上午10:43:11
得到所有新产品的代码:
$this->_productCollection = Mage::getResourceModel('catalog/product_collection')->
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('*');
得到某一分类下面的所有子产品
2012年10月25日星期四 Asia/Shanghai下午2:55:05
得到某一分类下面的新产品,代码如下:
<?php
$cat_id = 46; // category id
$category = Mage::getModel('catalog/category')->load($cat_id);
$todayDate = Mage::app()->getLocale()->date()->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
得到某一分类的所有子分类,以及在子分类中新产品的个数
2012年10月25日星期四 Asia/Shanghai下午2:37:44
有一个需求,做出新产品页面,然后产品页面下面是所有的一级分类以及一级分类下面的新产品的个数。分享代码如下:
<?php
//// top Seller
if($_category->getName() == "New Arrivals"){
echo '<div class="fuckyoufm">';
$currid = 3;
magento - 得到当前分类的下一级子分类,和得到所有子分类的方法
2012年10月25日星期四 Asia/Shanghai下午2:34:09
在magento中,获取子分类一般是2中:
1.得到某一个分类的下一级的分类,方法:
$currCat =
Mage::getModel(
'catalog/category'
)->load($id)
; //当前分类
$collection
= Mage::getModel(
'catalog/category'
)->getCategories(
$currCat
->getEntityId());