我想从 opencart 管理面板中的 h1 标题元素中删除图标。我正在尝试使用星号作为文件名的通配符,但没有成功。文档说搜索数据:
<h1><img src="view/image/*.png" alt="" /> <?php echo $heading_title; ?></h1>
应该是一个有效的正则表达式模式,虽然我不熟悉正则表达式。如何在 vqmod 中正确执行此操作?
<file name="admin/view/template/*/*.tpl">
<operation>
<search regex="true" position="replace"><![CDATA[
<h1><img src="view/image/*.png" alt="" /> <?php echo $heading_title; ?></h1>
]]></search>
<add><![CDATA[
<h1><?php echo $heading_title; ?></h1>
]]></add>
</operation>
</file>