I would like to have 'Payment Method Details' in the Checkout Success page
This is so I the bank deposit details are shown on the Checkout Success page
Wondering if anyone may be able to help suggest code I can add to
\includes\templates\template_default\templates\tpl_checkout_success_default.php
I added this to \includes\classes\orders.php
PHP Code:
if ($GLOBALS[$payment_class]->title == "Direct Bank Deposit"){ $html_msg['PAYMENT_METHOD_DETAIL'].= "<div style='text-align:left'><br><strong><span style='color:#FF0000'>Bank details</style></strong><br>Account No.: 490963255 <br />
BSB Number: 013257 <br />
Account Name: Got Any Blacker <br />
Bank Name: ANZ" . $_SESSION['customer_id'] . "</div>";
To get the bank details to show up in the emails
I dont know how to add
PHP Code:
<?php echo TEXT_SELECT_PAYMENT_METHOD; ?>
OR
$PAYMENT_METHOD_DETAIL
to \tpl_checkout_success_default.php
Bookmarks