drroot Posted March 25, 2012 Share Posted March 25, 2012 Currently when we login to My Account page, we have following items: 1. History and details of my orders 2. My credit slips 3. My addresses 4. My personal information 5. My vouchers Now I wish to add a new link "Contact us" to this list. Any ideas? Link to comment Share on other sites More sharing options...
cedricfontaine Posted March 25, 2012 Share Posted March 25, 2012 You'll have to edit the file my-account.tpl file from your theme. Link to comment Share on other sites More sharing options...
tdr170 Posted March 26, 2012 Share Posted March 26, 2012 Edit my-account.tpl of your theme and add this line just above the last closing </if> statement just above {$HOOK_CUSTOMER_ACCOUNT}. <li><a href="{$link->getPageLink('contact-form.php', true)}" title="{l s='Contact Us'}"><img src="{$img_dir}icon/contact.gif" alt="Contact Us" class="icon" /></a></li> Like this (other code here) <li><a href="{$link->getPageLink('contact-form.php', true)}" title="{l s='Contact Us'}"><img src="{$img_dir}icon/contact.gif" alt="Contact Us" class="icon" /></a></li> {/if} {$HOOK_CUSTOMER_ACCOUNT} </ul> Link to comment Share on other sites More sharing options...
Recommended Posts