Quote Originally Posted by ronwong View Post
craftzombie, how did you remove the TEXT_CHECKOUT_LOGOFF_CUSTOMER and the broken image link? if you give me a pointer I can check it out. I dont really know php. I am also installing on 1.36.
In includes/templates/your_template/templates/tpl_checkout_success_default.php

I removed this:
Code:
<!--bof logoff-->
<div id="checkoutSuccessLogoff">
<?php
  if (isset($_SESSION['customer_guest_id'])) {
    echo TEXT_CHECKOUT_LOGOFF_GUEST;
  } elseif (isset($_SESSION['customer_id'])) {
    echo TEXT_CHECKOUT_LOGOFF_CUSTOMER;
  }
?>
<div class="buttonRow forward"><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo zen_image_button(BUTTON_IMAGE_LOG_OFF , BUTTON_LOG_OFF_ALT); ?></a></div>
</div>
<!--eof logoff-->
The Logoff link appears in my header anyway. And many other sites that I have shopped at do not remind you to logoff after checkout. Maybe they might have automatic logoff? I don't know, I never bothered to test that. I also added this...

Optional (to give them a little more info)-
right after this line:
Code:
<?php if(!($_SESSION['COWOA'])) { ?> <div id="checkoutSuccessOrderLink"><?php echo TEXT_SEE_ORDERS;?></div> <?php } ?>
I added:

Code:
<div>You will receive an order confirmation email containing the details of your order.
<br class="clearBoth" />
You will receive a shipping confirmation email when your item(s) have shipped.
</div>