Sorry for asking again but I'd like to confirm some things.
Assuming your custom template name is 'magic', you have something similar to the following directory structure in your includes directory?
- includes/templates/magic/template_info.php
- includes/templates/magic/images/
- includes/templates/magic/css/stylesheet.css
The contents of your "includes/templates/magic/template_info.php" is something like that?
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 = 'Magic Template';
$template_version = 'Version 1.3.8a';
$template_author = 'stitchnkitty';
$template_description = 'My customized template';
$template_screenshot = 'scr_template_default.jpg';
?>
Assuming everything's set up that way, what do you see on your Tools > Template Selection screen? Could you provide a screen shot like that shown on pg 273, step 1 of the book?
Thanks.