編程添加新的分類名稱我剛剛創建了一個新的根類編程方式使用此代碼:的Magento沒有顯示在管理員
$category = new Mage_Catalog_Model_Category();
$category->setStoreId(0);
$category->setName('Storybloks6');
$category->setUrlKey('storyblocks6');
$category->setIsActive('1');
$category->setIncludeInMenu('0');
$category->setDescription('Produtos que aparecem em destaque no carrossel da home');
$category->setDisplayMode('PRODUCTS');
$category->setIsAnchor('0');
$category->setLevel('1');
$category->setParentId('1');
$parentCategory = Mage::getModel('catalog/category')->load('1');
$category->setPath($parentCategory->getPath());
$category->save();
類別添加,但在管理分類頁面,它標籤沒有出現在菜單上: 新菜單在菜單上顯示爲(0)。我該如何解決它?
的方式......你應該使用'$類=法師:: getModel( '目錄/類別');' – Alex 2012-07-26 21:07:51
嗨@Alex,我想這種方式。同樣的問題。當我到那裏並以管理員身份保存(0)時,它會修復。我仍在尋找解決方案。 – 2012-07-26 22:13:51