2

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

任何帮助,将不胜感激。

请查看以下网址中的图片:

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

4

1 回答 1

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

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

于 2012-09-05T21:20:54.430 回答