我想允许在产品的描述字段中添加目录产品链接小部件(这样我就可以轻松地链接到描述中的其他产品)。我已经通过创建如下文件扩展了 Mage_Catalog_Model_Product:
class mymodule_Catalog_Model_Product extends Mage_Catalog_Model_Product
{
/**
* Add getDescription function that interprets widget or static blocks
* within product descriptions
*/
public function getDescription() {
$processor = Mage::getModel('widget/template_filter');
$html = $processor->filter($this->getData('description'));
return $html;
}
}
现在,如果我输入类似的内容,它可以正常工作
{{widget type="catalog/product_widget_link" anchor_text="my text" template="catalog/product/widget/link/link_inline.phtml" id_path="product/1234"}}
进入描述字段——它创建一个指向产品 ID 1234 的链接。
但我想在所见即所得编辑器中添加实际的目录产品链接小部件按钮以编辑产品。该按钮已在 CMS 编辑器中,但我缺少需要修改的内容,以便将此小部件添加到管理界面以编辑产品。有人可以帮我吗?