Thread: New Side Box
View Single Post
  #13  
Old 05-10-2011, 08:36 PM
 
graffix graffix is offline
 

Advanced Member
  
Join Date: Jan 2011
Posts: 39
 

Default Re: New Side Box

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.
__________________
version 4.4.3
X-payments
sales and stats
Reply With Quote