Hi BillyBoyle,

Sorry for the delay but has been busy...

I tried this tonight and it breaks my cart (I believe the only change was on the module file?). Here's my copy as my sidebox parameters:
PHP Code:
<?php
/**
 * blank sidebox - allows a blank sidebox to be added to your site
 *
 * @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_messageme_sidebox true;
if (
$_SERVER['HTTPS']== 'on' ){
    
$show_messageme_sidebox false;
}  

  if (
$show_messageme_sidebox == true) {
      require(
$template->get_template_dir('tpl_messageme.php',DIR_WS_TEMPLATE$current_page_base,'sideboxes'). '/tpl_messageme.php');
      
$title =  BOX_HEADING_MESSAGEME_SIDEBOX;
      
$title_link false;
      require(
$template->get_template_dir($column_box_defaultDIR_WS_TEMPLATE$current_page_base,'common') . '/' $column_box_default);
 }
?>
Here's what happens: http://img39.imageshack.us/img39/1736/aquatic.jpg

Let me know if I have to make changes in any other of the files or if there's something wrong on this one.