Quote Originally Posted by jjgtrading View Post
I fixed it but I'm not sure if I should have. I replace the tpl_header.php it placed in Cherry Zen's common folder. The COWOA version has this in it

<?php
// Display all header alerts via messageStack:
if ($messageStack->size('header') > 0) {
echo $messageStack->output('header');
}
if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
echo htmlspecialchars(urldecode($_GET['error_message']));
}
if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
echo htmlspecialchars($_GET['info_message']);
} else {

}
?>

but when I tried to paste it into Cherry Zen's original the header when back to not displaying properly.

Anybody know if it's vital I put back COWOAs version?
No, don't paste it into the header. IN cherry zen, that section (controls the sites error codes and has nothing to do with COWOA) is moved into tpl_main_page.php for design purposes.

That chunk is NOT the chunk that is different in the COWOA mod, I'd suggest comparing COWOA header with cherry zen header again, and look for another difference.