0

更新するMagentoサイトを手渡されました。カートの経験がないので、これらの質問が単純すぎないことを願っています。少し検索しましたが、簡単な答えを見つけることができませんでした
=>マジェントカートに表示されている一部のアクセサリについて、タイトルと画像にリンクを付けたくないので、これを動的に作成する方法. どんな助けもかなりのものです

4

1 に答える 1

0

I have create a function in /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();
    }

and call it on default.phtml of cart after getting name i use if and else to remove link thanks for help and comment

于 2012-10-26T12:22:34.853 に答える