The easiest way of creating your CUSTOM template is to start with a FRESH set of ZC software on your hard drive. This set should be kept apart from any backups, or other zc software sets you may have.
Then, on your harddrive, and with this FRESH set of software, open up the FOLLOWING main folders, and everywhere you see a classic directory, RE-NAME it to your desired template name:
All are in the includes folder. There are no over-rides in the ADMIN section:
1. templates
2. languages
3. modules
You will need to DRILL DOWN into all visible SUB-FOLDERS, because "classic" appears in quite a few locations.
When you have RE-NAMED every instance of classic, to my_custom_template, go back to:
includes/my_custom_template/template_info.php
... and open it for EDITING.
It will look like this:
PHP Code:
<?php
/**
* Template Information File
*
* @package templateSystem
* @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: template_info.php 4226 2006-08-24 02:23:25Z drbyte $
*/
$template_name = 'Classic Contemporary Green';
$template_version = 'Version 1.3.5';
$template_author = 'Zen Cart Team (c) 2006';
$template_description = 'This template set is designed to be easily modified using only the style sheet to change colors, fonts, and the store logo. Three images are required; logo.jpg, header_bg.jpg, and tile_back.gif.';
$template_screenshot = 'scr_template_default.jpg';
?>
It should be quite obvious what to do from this point:
PHP Code:
<?php
/**
* Template Information File
*
* @package templateSystem
* @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: template_info.php 4226 2006-08-24 02:23:25Z drbyte $
*/
$template_name = 'MY CUSTOM TEMPLATE';
$template_version = 'Version 1';
$template_author = 'YOUR NAME - OR WHATEVER';
$template_description = 'This is MY CUSTOM TEMPLATE.';
$template_screenshot = '';
?>
Then, just FTP everything to your server.
PS... IT WILL CURRENTLY BE IDENTICAL TO CLASSIC IN LOOK AND FEEL, but it is the foundation for your future customisations.