1
我知道我們可以獲取Magento中當前/活動類別的ID。我有不同的子類別的產品,我想將這些產品顯示爲相關產品。我的問題是,是否有可能獲得當前選擇的子類別的ID?獲取magento中當前子類別的ID
我知道我們可以獲取Magento中當前/活動類別的ID。我有不同的子類別的產品,我想將這些產品顯示爲相關產品。我的問題是,是否有可能獲得當前選擇的子類別的ID?獲取magento中當前子類別的ID
如果您在產品列表或產品詳細信息頁面上,可以獲取當前類別的兒童(如果有)。
$_currentCategory = Mage::registry('current_category') ;
$_currentCategories->getChildrenCategories() will give you all children category.
然後,您可以根據類別過濾您的產品集合。
$products = Mage::getModel('catalog/category')->load(cat_id)
->getProductCollection()
->addAttributeToSelect('*')
這會給你你的子類別
的產品收集