View Single Post
  #23  
Old 05-15-2004, 02:28 PM
 
farvegruppen farvegruppen is offline
 

Newbie
  
Join Date: May 2004
Location: Denmark
Posts: 5
 

Default

In 3.7.0 you have the "speed bar". To make a new page tab in the speed bar called "about us", do this:

1. Add selector in skin1/customer/home_main.tpl which will display your About Us template in the center of the cart:


{if $smarty.get.mode eq "subscribed"}
{include file="main/subscribe_confirmation.tpl"}


{elseif $smarty.get.mode eq "about_us"}
{include file="main/about_us.tpl"}


{elseif $smarty.get.mode eq "unsubscribed"}
{include file="main/unsubscribe_confirmation.tpl"}

2. Then create About Us template that will be displayed in the center, create file skin1/main/about_us.tpl and put the following lines there:

{ include file="location.tpl" last_location="About Us"}
{capture name=dialog}
Put your about us text here...
{/capture}
{ include file="dialog.tpl" title="Information about our company" content=$smarty.capture.dialog extra="width=100%"}

3. Go to Administration/Speed bar:
Link titel "About us", URL "home.php?mode=about_us"
Reply With Quote