Ok! I got my shared ssl to work....now when you put something in the shopping cart and proceed to fill out the customer info to create an account, MY HEADER DISAPPEARS! Anyone got a clue why?
Ok! I got my shared ssl to work....now when you put something in the shopping cart and proceed to fill out the customer info to create an account, MY HEADER DISAPPEARS! Anyone got a clue why?
You must be using a shared SSL Cert...check with your host as to what files and where they have to be to correct this
Kobra! We meet again! Thank you for the advice! I will do that!
Ok...my host is not answering my question about my missing header. I posted another so still waiting. However, I did discover something interesting on my own! I installed another template to see if I would like the design, and I noticed my header DID NOT DISAPPEAR at checkout with the new template, SO.... there must be something wrong in one of my override files! Anyone?
Did you use a relative URL to the image?
Please do not PM for support issues: a private solution doesn't benefit the community.
Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.
I'm not sure I understand your question, but this is what I think you're asking...My header points you back to my main page....
Post your tpl_header.php code for what followsI'm not sure I understand your question, but this is what I think you're asking.
Or compare the code for your template against the other template that does not have this issueCode:<!--bof-branding display--> <div id="logoWrapper">
Hi Kobra! Do you mean, copy and past that into my tpl_header.php page?
No...paste a bit of it here on the forum
lol, ok, I got it from templates/myown/common:
<!--bof-branding display-->
<div id="logoWrapper">
<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>
<?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?>
<div id="taglineWrapper">
<?php
if (HEADER_SALES_TEXT != '') {
?>
<div id="tagline"><?php echo HEADER_SALES_TEXT;?></div>
<?php
}
?>
<?php
if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
if ($banner->RecordCount() > 0) {
?>
<div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
<?php
}
}
?>
</div>
<?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>
</div>
<br class="clearBoth" />
<!--eof-branding display-->
<!--eof-header logo and navigation display-->
<!--bof-optional categories tabs navigation display-->
<?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?>
<!--eof-optional categories tabs navigation display-->
<!--bof-header ezpage links-->
<?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
<?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
<?php } ?>
<!--eof-header ezpage links-->
</div>
<?php } ?>