
Originally Posted by
lat9
To get that banner to "disappear", you'll need to make the edit I suggested in post #146. As for the missing </div>, you should update that tpl_footer.php file, adding the highlighted line:
Code:
<div id="navSuppWrapper">
<?php
if (!isset($flag_disable_footer) || !$flag_disable_footer) {
?>
<div id="navSupp">
<?php if (EZPAGES_STATUS_FOOTER == '1' or (EZPAGES_STATUS_FOOTER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
<ul>
<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
<li><?php require($template->get_template_dir('tpl_ezpages_bar_footer.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_footer.php'); ?></li>
</ul>
<?php } ?>
</div>
</div>
The checkout_one_confirmation page (the one with the spinning icon) is displayed while the order is "processed", i.e. updating the database and sending any confirmation emails.
Hello, I made the changes in post #146. Here is the code as now appears on the site:
Code:
if (!$confirmation_required) {
?>
$(document).ready(function(){
$('body', 'html').css({
"overflow": "hidden",
"height": "100%",
"background": "none"
});
$('#navBreadCrumb, #bannerSix', '#bannerOne').hide();
$('#checkoutOneConfirmationLoading').show();
$('form[name="checkout_confirmation"]').submit();
});
<?php
}
Yet the banner is still there???????
As far as adding the </div> I added the code to the tpl_footer.php file but it added a blue bar where the copyright info etc. appears and makes the info almost impossible to read. Maybe I need to add the extra </div> somewhere else on the page?
I would like to change the confirmation page to remove the top banner, the confirm button on the side and add text like, "please wait processing your order".
Can you continue to help?
Frank