Re: Additing Additional Pages
Where does this code snipet actually go...on what page...
Does it go on the home.tpl
Then add selector which will diplay 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"}
|