Hi All,
The coolmenu is just what I'm looking for, looks great - so before I populate the site I want to get the look & feel right.
I'm new, so sorry to sound dim... hi Andreas..
I've got the coolmenu instructions here - I'm stuck right at the beginning -
You say -
2.) Replace the following line in your catalog/includes/column_left.php file:
REPLACE:
include(DIR_WS_BOXES . 'categories.php');
BY:
include(DIR_WS_BOXES . 'coolmenu.php');
I don't seem to have the line - include(DIR_WS_BOXES . 'categories.php'); - anyone know what code to change....
here is my includes/column_left.php...
<?php
/*
$Id: column_left.php,v 1.1.1.1 2004/03/04 23:40:37 ccwjr Exp $
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright © 2002 osCommerce
Released under the GNU General Public License
*/
$column_query = tep_db_query('select display_in_column as cfgcol, infobox_file_name as cfgtitle, infobox_display as cfgvalue, infobox_define as cfgkey, box_heading, box_template, box_heading_font_color from ' . TABLE_INFOBOX_CONFIGURATION . ' where template_id = ' . TEMPLATE_ID . ' and infobox_display = "yes" and display_in_column = "left" order by location');
while ($column = tep_db_fetch_array($column_query)) {
if ( file_exists(DIR_WS_TEMPLATES . TEMPLATE_NAME . '/boxes/' . $column['cfgtitle'])) {
define($column['cfgkey'],$column['box_heading']);
$infobox_define = $column['box_heading'];
$infobox_template = $column['box_template'];
$font_color = $column['box_heading_font_color'];
$infobox_class = $column['box_template'];
//cache control side box detect
if ((USE_CACHE == 'true') && empty($SID) && ($column['cfgtitle'] == 'categories4.php') ) {
echo tep_cache_categories_box4();
} else if ((USE_CACHE == 'true') && empty($SID) && ($column['cfgtitle'] == 'manufacturers.php') ) {
echo tep_cache_manufacturers_box();
} else {
require(DIR_WS_TEMPLATES . TEMPLATE_NAME . '/boxes/' . $column['cfgtitle']);
}
// end cache control code
}else{
define($column['cfgkey'],$column['box_heading']);
$infobox_define = $column['box_heading'];
$infobox_template = $column['box_template'];
$font_color = $column['box_heading_font_color'];
$infobox_class = $column['box_template'];
require(DIR_WS_BOXES . $column['cfgtitle']);
}
}
?>
where should I change the line code...
Sorry to be so dim,, thanks in advance...