Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Creating your own pages

Creating your own pages

Locked

Views: 891

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
3 Aug 2009, 2:51 PM
#1
evil_turinp avatar

evil_turinp

New Zenner

Join Date:
Jul 2009
Posts:
98
Plugin Contributions:
0

Creating your own pages

Hi

I have this zen lark started pretty well now but I want to define / create my own pages what is the best way to do it so I can create my own about us page delivery page etc

Cheers

3 Aug 2009, 5:15 PM
#4
afo avatar

afo

Totally Zenned

Join Date:
Aug 2004
Location:
New York City
Posts:
6,800
Plugin Contributions:
0

Re: Creating your own pages

Check what you have in includes/languages/english/YOUR_TEMPLATE/about_us.php (where YOUR_TEMPLATE is the name of your custom template).

The original file contains:

<?php
/**
 * @package languageDefines
 * @copyright Copyright 2003-2006 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: about_us.php v1.3 $
 */
//

define('NAVBAR_TITLE', 'About Us');
define('HEADING_TITLE', 'About Us');

?>
3 Aug 2009, 7:17 PM
#5
evil_turinp avatar

evil_turinp

New Zenner

Join Date:
Jul 2009
Posts:
98
Plugin Contributions:
0

Re: Creating your own pages

Thanks:)