Hi pfabrick
Thanks so much for your comments. It lead me to discover that there were problems with my template (typical of template monster!!!!!!!) pre definition of the logo... So, if there are other that have stumbled or will stumble upon this problem in the future, the resolve for mine was in the file:
/includes/templates/YOUR_TEMPLATE/common/tpl_header.php
Once the following code had been replaced, the defining of the HEADER_LOGO_IMAGE worked perfectly.
Thanks again for your reply. Was excellent ...
I replaced:
<a href="<?php echo zen_href_link(FILENAME_DEFAULT);?>"><?php echo zen_image(DIR_WS_TEMPLATE.'images/logo.jpg'); ?></a>
With this
<div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?></div>
pfabrick:
OK, so something about this was bothering me so I went out to my testsite and set up 2 sites both pointing to the same template. I then made the logo defines in the both config_siteName files and it worked. I have the same template on two different sites, but using logo1.png for the first site and logo2.png for the second. Everything seems to be working correctly....they way you want it to.
Maybe there's something else wrong with your setup. Do you have the firebug extension installed on firefox? Try inspecting the logo for both sites and see where the file is pointing to.
BTW, it makes sense that you should define the following as well in the config files if your logos are different sizes:
define('HEADER_LOGO_WIDTH', '200px');
define('HEADER_LOGO_HEIGHT', '70px');
Gotta admit, for some reason it never occurred to me that you could use the same template (all of our stores are dissimilar), but it makes sense maintenance & upgrade-wise if your stores only vary by a logo.