Hi everyone,
I located this code in tpl_checkout_payment_default.php found in includes/templates/barebones/templates/
It controls the display of the credit card images on the payment information section of the check out page.
I want to add an image immediately to the right of the last credit card image in the row. Its the same size and will hopefully line up nicely with the others.
What additions do I have to make to the code below to make that happen?
Thanks in advance for the help!<?php
if (SHOW_ACCEPTED_CREDIT_CARDS != '0') {
?>
<?php
if (SHOW_ACCEPTED_CREDIT_CARDS == '1') {
echo TEXT_ACCEPTED_CREDIT_CARDS . zen_get_cc_enabled();
}
if (SHOW_ACCEPTED_CREDIT_CARDS == '2') {
echo TEXT_ACCEPTED_CREDIT_CARDS . zen_get_cc_enabled('IMAGE_');
}
?>



