watch out
make a file called secureordering.tpl and put it in the /help template dir and in the secureordering.tpl file it should say
{* $Id: secureordering.tpl,v 1.5 2003/08/23 06:55:20 lucky Exp $ *}
{capture name=dialog}
{$lng.txt_secureordering}
{/capture}
{include file="dialog.tpl" title=$lng.lbl_secureordering content=$smarty.capture.dialog extra="width=100%"}
then make a txt_secureordering file in the text section admin languages section and copy & paste whatever html code you want into this txt_secureordering file
then in /help/index.tpl you need to add
{elseif $section eq "secureordering"}
{include file="help/secureordering.tpl"}
and it should work, let us know, the url path would look similar to
yourstore.com/customer/help.php?section=secureordering
|