如何根据类别过滤添加到心愿单的magento产品

时间:2012-08-03 05:30:17

标签: magento

在magento中,我想根据目录类别过滤登录用户的心愿单项。 任何人都可以建议我解决方案吗?

任何帮助都将不胜感激。

请查看以下网址的图片:

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

1 个答案:

答案 0 :(得分:0)

注意:未经测试。这里没什么袖手旁观的行动。

// 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 );

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