vqmod .xml を書き込もうとしていますが、うまくいきませんか? すべての catalog/* ファイルに変更を加えようとすると。他の (system/*、admin/*) ファイルでは問題なく動作しますが、何も変わりませんか? 私がこのようなことをしようとすると:
<file name="catalog/controller/checkout/cart.php">
<operation>
<search position="replace"><![CDATA[
$json['total'] = sprintf($this->language->get('text_items'), $this->cart->countProducts() + (isset($this->session->data['vouchers']) ? count($this->session->data['vouchers']) : 0), $this->currency->format($total));
]]></search>
<add trim="true"><![CDATA[
$json['total'] = sprintf($this->language->get('text_items'), $this->cart->countProducts() + (isset($this->session->data['vouchers']) ? count($this->session->data['vouchers']) : 0), $this->currency->format($total));
]]></add>
</operation>
</file>
私は何を間違っていますか?