在 magento 中,我想根据目录类别过滤登录用户的愿望清单项目。有人可以建议我任何解决方案吗?
任何帮助,将不胜感激。
请查看以下网址中的图片:
在 magento 中,我想根据目录类别过滤登录用户的愿望清单项目。有人可以建议我任何解决方案吗?
任何帮助,将不胜感激。
请查看以下网址中的图片:
注意: 未经测试。这里有一些即兴表演。
// 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 );
然后进行正常的集合迭代。