Thread: My Account Page
View Single Post
  #2  
Old 05-22-2008, 12:25 AM
  Yurij's Avatar 
Yurij Yurij is offline
Banned
 

X-Adept
  
Join Date: Jan 2008
Posts: 486
 

Default Re: My Account Page

Quote:
Originally Posted by yuichi
Hi all.
I am trying to make a "my account" page and found few pages that describes how to do it, but had no success.
I have 4.1.9 and for some reason, the codes that I tried does not work.
Does anyone know where I can find some examples that works with 4.1.9?
Basically what I tried was to create a page with:

/help.php?section=login

If anyone could redirect me to a page, I would much appreciate!
Thanks in advance.

During processing actually meet the two files:
-- Help.php
-- Skin1/help/index.tpl

To add a new section (pages), you need to add a new condition in "Skin1/help/index.tpl".

Example, add until last "{else}" next code (will turn out something so):
PHP Code:
..........
{elseif 
$section eq "test"}
xo-xo-xo

{else}
{include 
file="help/general.tpl"}
{/if} 


You will have a new page, which will be called at the following url:
help.php?section=test
Reply With Quote