我正在使用 Inchoo 自定义设计的图库插件:http: //incho.net/ecommerce/magento/magento-custom-design-gallery/。这个插件创建一个画廊,可以给画廊一个名字。
虽然我想将插件链接到类别选择器(以选项卡形式)。以便画廊链接到一个类别。
我已经尝试将以下内容添加到 app/code/local/Inchoo/Cpa/Block/Cat/Edit/Tabs.php:
$this->addTab('categories', array(
'label' => Mage::helper('catalog')->__('Categories'),
'url' => $this->getUrl('*/*/categories', array('_current' => true)),
'class' => 'ajax',
));
它没有任何效果。我能做些什么?我是 Magento 扩展开发的新手。