Quote:
	
	
		| 
			
				 Originally Posted by ElegantXMods.com 
				Hi there, 
It's pretty easy - open up  skin1/customer/home.tpl and find the line:
 
	Code: 
	<div id="right-bar">  
  
And place the following code below it - work out exactly where e.g. below the minicart but above the news section for instance.
 
	Code: 
	{include file="modules/links.tpl"}  
  
Now save  home.tpl.
 
Now, in your  skin1/modules folder, create a new file called  links.tpl and place the following code inside:
 
	Code: 
	{capture name=menu}
    <ul>
      <li>LINK 1</li>
      <li>LINK 2</li>
      <li>LINK 3</li>
      ...
    </ul>
  {/capture}
  {include file="customer/menu_dialog.tpl" title="Links" content=$smarty.capture.menu}  
  
Change the links to whatever you would like and save.  
			
		 | 
	
	
  
My Implementation for 4.4.2
in /skin1/customer/left_bar.tpl below
added
{include file="customer/links.tpl"}
to the section where I wanted it displayed. Keep in mind that the div id is set from content.tpl.
saved and uploaded
in skin1/customer folder create a file called links.tpl and put this in it.
{capture name=menu}
    <ul>
      <li>LINK 1</li>
      <li>LINK 2</li>
      <li>LINK 3</li>
      ...
    </ul>
  {/capture}
  {include file="customer/menu_dialog.tpl" title="Links" content=$smarty.capture.menu}
worked well, thanks.