我正在使用OpenCart 2.0.3.1,并且我已按照此处的vQmod安装说明进行操作。
然后我按照说明上传了一个XML文件,但我没有看到任何变化。我是否还需要安装此vQmod?
这就是我的XML文件。
<?xml version="1.0" encoding="utf-8"?>
<modification>
<id>Admin modifications</id>
<version>1.0</version>
<vqmver>2.5.1</vqmver>
<author>Me</author>
<file path="my-dashboard/language/english/" name="english.php">
<operation info="Change short date format">
<search position="replace">
<![CDATA[
$_['date_format_short'] = 'd/m/Y';
]]>
</search>
<add>
<![CDATA[
$_['date_format_short'] = 'm/d/Y';
]]>
</add>
</operation>
</file>
</modification>
我使用扩展程序安装程序在OpenCart中上传XML文件,然后使用Extensions中的刷新按钮 - &gt;修改但我的日期格式没有在管理界面中更新。
问题可能是我需要从上面的Github链接安装vQmod但如果是这样,为什么不在OpenCart扩展页面的安装说明中。
更新09/01/2015 - 已解决
我已经解决了这个问题。如果您将我的管理文件夹更改为我的仪表板,则在vQmod XML文件中,您不应使用新文件夹名称,但仍使用admin。现在一切正常。可能应该将其添加到文档中。
答案 0 :(得分:2)
我已经解决了这个问题。如果您将我的管理文件夹更改为我的仪表板,则在vQmod XML文件中,您不应使用新文件夹名称,但仍使用admin。现在一切正常。可能应该将其添加到文档中。
答案 1 :(得分:0)
您所遵循的instructions可能不够明确,但您必须安装vQmod才能运行任何修改。看到 维基上How to install vQmod on OpenCart来完成安装。
答案 2 :(得分:0)
此模块无需任何类型的安装,只需在根目录中上传此模块即可 它将取代两个文件
1 admin \ controller \ extension \ installer.php
2 admin \ controller \ extension \ modification.php
之后它会正常工作。
以下是我工作的xml
的示例<?xml version="1.0" encoding="utf-8"?>
<modification>
<id>Carousel_featured</id>
<version>1.0.1</version>
<vqmver>2.5.0</vqmver>
<author>Hardik kotak</author>
<file path="catalog/view/theme/*/template/module/featured.tpl">
<operation>
<search position="top"><![CDATA[]]></search>
<add><![CDATA[<div class="featured-product product-listing">]]></add>
</operation>
</file>
</modification>
我的xml在名称更改my_modification.xml后运行到my_modification.vqmod.xml
我已将此文件放在root / vqmod / xml / my_modification.vqmod.xml中
答案 3 :(得分:0)
请注意,您只能在Opencart上使用一个VQmod系统。
所以它来自https://github.com/vqmod/vqmod/wiki,或来自http://www.opencart.com/index.php?route=extension/extension/info&extension_id=19501。不要同时安装它们,否则你的VQmod XML文件会被处理两次!