要禁用magento购物车中特定子类别的网址

时间:2012-10-25 12:58:32

标签: magento magento-1.7

刚拿到magento网站进行更新。没有购物车的经验,所以我希望这些问题不是太简单。搜索了一下,但未能找到直截了当的答案  =>对于我在magento购物车中显示的一些配件,我不希望链接到他们的标题和图像,所以我是如何动态制作的。 任何帮助都很明显

1 个答案:

答案 0 :(得分:0)

我在/app/code/core/Mage/Checkout/Block/Cart/Item/Renderer.php中创建了一个函数

    public function getCustumcatId()
    {
    $proid=$this->getProduct()->getId();
    $categoryIds=$this->getProduct()->getCategoryIds($proid);
    foreach($categoryIds as $categoryId)
    {
    $category = Mage::getModel('catalog/category')->load($categoryId);
    }
    return  $category->getName();
    }

并在购物车的default.phtml上调用它 获得名称后,我使用if和其他删除链接感谢您的帮助和评论