0

我无法让 ocmod 扩展工作......我在这里找到了关于 ocmod 扩展的唯一文档文件,我认为我遵循了规则,但我仍然无法达到预期的效果......来自 store.php 文件的变量对其他 tpl 文件 (main.tpl) 不可见

所以我想添加一个模板文件来显示来自 Store 模块的变量。模板文件位于 /catalog/view/theme/journal2/template/journal2/menu/main.tpl

我的代码是:

<?xml version="1.0" encoding="utf-8"?>
<modification>
  <name>Store Allstores Modification</name>
  <code>AC_Store_Allstores</code>
  <version>1.0</version>
  <author>AC</author>
  <link></link>
  <file path="catalog/controller/module/store.php">
    <operation>
        <search><![CDATA[
        return $this->load->view($this->config->get('config_template') . '/template/module/store.tpl', $data);
        ]]></search>
        <add position="After"><![CDATA[
        $this->load->view($this->config->get('config_template') . '/template/journal2/menu/main.tpl', $data);
        ]]></add>
    </operation>
  </file>  
</modification>

谁能指出我在这里做错了什么?

4

1 回答 1

0

</modification>您在文件末尾错过了,我已经添加了它,并且它可以正常工作。

于 2017-02-14T21:14:24.147 回答