OpenCart VQMod XML 文件不工作

OpenCart VQMod XML file not working

我想使用 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>

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

中可用

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

你能告诉我是否在你的默认 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>