编辑产品时不显示类别

发布于 2024-10-25 02:15:45 字数 119 浏览 2 评论 0原文

我正在使用 Magento Enterprise,当我编辑产品时,只有顶级类别可供选择。所有子类别均处于活动状态并显示在导航菜单中,但在编辑产品时不会显示。

有谁知道如何解决这个问题?

克里斯

I am using Magento Enterprise and only the top level category is available to choose when I am editing a product. All the sub categories are active and appear in the navigation menu, but not when editing a product.

Does anyone know how to fix this?

Chris

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

纸伞微斜 2024-11-01 02:15:45

安装了 2 次后,我们遇到了这个问题。第三次是使用 wget 命令直接从服务器下载 Magento,然后解压并安装。然后就成功了。我认为前两次安装它的人都将其下载到桌面上,然后通过 ftpd 将其上传到服务器上。

With 2 installs we had this issue. The 3rd time was done by downloading Magento directly from the server using wget command and then extracting and installing. Then it worked. I think whoever installed it the previous 2 times downloaded it to their desktop and then ftpd it up to the server.

御守 2024-11-01 02:15:45

同意 - 我在 FTP 传输 Mage 文件后遇到了这个问题。

使用主机脚本进行擦除并重新安装后,问题已解决。应该没有必要吧...

Agreed - I had this issue after FTPing the Mage files.

After a wipe and re-install using hosts' script the issue is sorted. Shouldn't be necessary...

笔芯 2024-11-01 02:15:45

社区版的 1.5.0.1 中似乎存在匹配缺陷,在 CE 版本中,其 Mage_Adminhtml_Block_Catalog_Product_Edit_Tab_Categories 的 getSelectedCategoriesPathIds() 方法中的

回归恢复到此方法的 1.4.* 代码似乎已修复它,所有功劳都归功于 rrroulio 的跟踪在magento板上找到这个: http://www.magentocommerce.com/boards/viewreply/ 316838/

旧的1.4该方法代码如下:

public function getSelectedCategoriesPathIds($rootId = false)
{
    $ids = array();
    $collection = Mage::getModel('catalog/category')->getCollection()
        ->addFieldToFilter('entity_id', array('in'=>$this->getCategoryIds()));
    foreach ($collection as $item) {
        if ($rootId && !in_array($rootId, $item->getPathIds())) {
            continue;
        }
        foreach ($item->getPathIds() as $id) {
            if (!in_array($id, $ids)) {
                $ids[] = $id;
            }
        }
    }
    return $ids;
}

A matching flaw appears to exists in 1.5.0.1 of Community Edition, in the CE version its a regression in the getSelectedCategoriesPathIds() method of Mage_Adminhtml_Block_Catalog_Product_Edit_Tab_Categories

Reverting to the 1.4.* code for this method appears to fix it, all credit to rrroulio for tracking down this one on the magento boards: http://www.magentocommerce.com/boards/viewreply/316838/

The old 1.4 code for this method is as follows:

public function getSelectedCategoriesPathIds($rootId = false)
{
    $ids = array();
    $collection = Mage::getModel('catalog/category')->getCollection()
        ->addFieldToFilter('entity_id', array('in'=>$this->getCategoryIds()));
    foreach ($collection as $item) {
        if ($rootId && !in_array($rootId, $item->getPathIds())) {
            continue;
        }
        foreach ($item->getPathIds() as $id) {
            if (!in_array($id, $ids)) {
                $ids[] = $id;
            }
        }
    }
    return $ids;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文