Help!!!
I'm trying to have sideboxes appear only in my contact page ...
here is the goofy code that I came up with for my module ...
PHP Code:<?php
/**
* indexright sidebox
*
* @package templateSystem
* @copyright 2007 Kuroi Web Design
* @copyright Portions Copyright 2003-2007 Zen Cart Development Team
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: blank_sidebox.php 2007-05-26 kuroi $
*/
// test if box should display
$show_contactusright_sidebox = false;
if (!($_GET['main_page']==FILENAME_CONTACT_US)) $show_contactusright_sidebox = true;
if ($show_contactusright_sidebox == true) {
require($template->get_template_dir('tpl_indexright_sidebox.php',DIR_WS_TEMPLATE, $current_page_base,'sideboxes'). '/tpl_indexright_sidebox.php');
$title = BOX_HEADING_CONTACTUS_SIDEBOX;
$title_link = false;
require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
}
?>



