Hi,
I have done the same (to notify customers that they will be redirected and then sent back), and am working on a small contrib both for the checkout_payment (general payment information+image) and checkout_confirmation (redirect + payment instructions) page. For confirmation I use the code below. In tpl_checkout_confirmation_default.php
after
<h4 id="checkoutConfirmDefaultPaymentTitle"><?php echo $GLOBALS[$class]->title; ?></h4>
add
Code:
<?
// Confirmation message START WILS
if (defined(strtoupper(MODULE_PAYMENT_.$class._CONFIRMATION_DESCRIPTION))) {
echo "<div class=PaymentConfirm>";
constant(strtoupper(MODULE_PAYMENT_.$class._CONFIRMATION_DESCRIPTION));
echo "</div>";
}
// Confirmation message END WILS
?>
where MODULE_PAYMENT_YOURPAYMENT_CONFIRMATION_DESCRIPTION has to be defined in your payment language file.
Also, I use the following in the stylesheet:
Code:
div.PaymentConfirm {
width: 100%;
background-color: yellow;
border: 1px dashed red;
padding: .4em;
float: left;
margin-left: 0.5em;}
Hope this helps, I'm sure there is a more fancy way to do it, but it works fine.
I'll post both the override files with complete instructions and css next week.