I am trying to create a VQMOD to move the following header links to the menu bar leaving only the "My account" link
for Opencart version 1.5.2.1:
• Home
• Wish List
• Shopping Cart
• Checkout
Sorry if this is a tedious topic for some, however here is my attempt:
<file name="catalog/view/theme/lite_blue_152/template/common/header.tpl">
<operation>
<search position="replace" offset="3"><![CDATA[
<div class="links"><a href="<?php echo $home; ?>"><?php echo $text_home; ?></a>
]]></search>
<add><![CDATA[
<div class="links"><a href="<?php echo $account; ?>"><?php echo $text_account; ?></a><?php echo
]]></add>
</operation>
</file>
The above is probably a shambles, but if someone has any input that would be hugely appreciated.
