如何根据类别筛选添加到心愿单中的magento产品



在magento中,我想根据目录类别过滤登录用户的愿望列表项。有人能给我提个解决办法吗?

如有任何帮助,我们将不胜感激。

请在以下网址查看图片:

https://dl.dropbox.com/u/53435938/wishlist.png

注意:未测试。这里有一些即兴的动作。

// ID of the category you wish to filter by
$category_id = 35;
// Instantiate a category model and load it
$_category = Mage::getModel( 'catalog/category' )->load( $category_id );
// Grab the wishlist collection
$_wishlistCollection = Mage::helper( 'wishlist' )->getWishlistItemCollection();
// Filter it by category as you would any normal collection
$_wishlistCollection->addCategoryFilter( $_category );

然后进行正常的集合迭代。

最新更新