gpt4 book ai didi

Magento 未显示在管理员中以编程方式添加的新类别名称

转载 作者:行者123 更新时间:2023-12-01 14:41:28 24 4
gpt4 key购买 nike

我刚刚使用以下代码以编程方式创建了一个新的根类别:

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

类别已添加,但在管理类别页面中,它的标签没有出现在菜单上: new category appears as (0) on menu新类别在菜单上显示为 (0)。我该如何解决?

最佳答案

检查您是否在同一家商店(管理商店 - 代码 0)或未设置标签的另一家商店的后端查看类别树。

关于Magento 未显示在管理员中以编程方式添加的新类别名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11678012/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com