0
我正在使用Inchoo自定義設計的圖庫插件:http://inchoo.net/ecommerce/magento/magento-custom-designed-gallery/。這個插件創建一個畫廊,並可以給畫廊一個名字。Magento添加類別選擇選項卡自定義插件
雖然我想將插件鏈接到類別選擇器(以選項卡形式)。以便畫廊鏈接到一個類別。
我已經嘗試過被添加以下到應用程序/代碼/本地/ Inchoo/CPA /座/貓/編輯/ Tabs.php:
$this->addTab('categories', array(
'label' => Mage::helper('catalog')->__('Categories'),
'url' => $this->getUrl('*/*/categories', array('_current' => true)),
'class' => 'ajax',
));
它不會有任何影響。我能做什麼?我在Magento Extension Development中很新。