Totally Zenned
- Join Date:
- Jul 2008
- Posts:
- 772
- Plugin Contributions:
- 0
Add an Image to Payment Method
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?
<?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_'); } ?>Thanks in advance for the help!