Jump to content

How to add a link in the My Account page?


Recommended Posts

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?

post-336756-0-40372900-1332663091_thumb.png

Link to comment
Share on other sites

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

×
×
  • Create New...