I am wanting to remove the icons from the h1 title element in opencart admin panel. I'm trying to use an asterisk as a wildcard for the file name, but it's not working out. The docs says the search data:
<h1><img src="view/image/*.png" alt="" /> <?php echo $heading_title; ?></h1>
should be a valid regex pattern, though I'm not familiar with regex. How can I do this correctly in 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>
` – Lea Jul 05 '13 at 10:06