0

我想使用 VQMod 在页脚文件中添加一些内容我的 XML 文件有以下内容,但它不工作

<code>
<?xml version="1.0" encoding="UTF-8"?>
<modification>
<id>VQMOD CODE test data</id>
<version>1.0</version>
<vqmver>2.0.1</vqmver>
<author>authore name</author>
<file name="catalog/view/theme/default/template/common/footer.tpl">
<operation error="skip">
<search position="after"><![CDATA[
</footer>
]]></search>
<add><![CDATA[
this is test content
]]></add>
</operation>
</file>
</modification>
</code>
4

2 回答 2

0

你的 opencart 版本是什么?它取决于您的 footer.tpl 内容。您需要确保它</footer>在 footer.tpl 中可用

而且您还需要签入,vqmod/logs您将在那里看到错误日志。

于 2015-02-16T02:42:32.050 回答
0

你能告诉我是否在你的默认 opencart 主题之上应用了任何自定义主题吗?

编辑:试试这个代码,它会为你工作。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE modification [
    <!ENTITY adminFolder "admin">
    <!ENTITY themeFolder "default">
    ]>
<modification>
<version>1.0</version>
<vqmver>2.X</vqmver>
<author>umesh</author>

    <file name="catalog/view/theme/&themeFolder;/template/common/footer.tpl">
    <operation info="To add custom data at footer">
        <search position="after" ><![CDATA[
               </footer>
                    ]]></search>
        <add><![CDATA[
            test content
                    ]]></add>
    </operation>
</file>

于 2015-02-16T04:19:23.173 回答