In the order detail screen it displays...
Invoice No. 2083Date Purchased:Thursday 27 September, 2007Payment Method:Credit Card
How do I get the "Credit Card" to show up as the actual credit card type??
Thanks!
Michelle
In the order detail screen it displays...
Invoice No. 2083Date Purchased:Thursday 27 September, 2007Payment Method:Credit Card
How do I get the "Credit Card" to show up as the actual credit card type??
Thanks!
Michelle
Which payment module was used to collect their payment ?
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
Linkpoint
Thanks!
Michelle
Assuming you're referring to order details that the customer sees in their My Account area ...
/includes/templates/YOURTEMPLATE/templates/tpl_account_history_info_default.php
near the bottom, you have this:
You could try changing that to this:Code:<h4><?php echo HEADING_PAYMENT_METHOD; ?></h4> <div><?php echo $order->info['payment_method']; ?></div>Code:<h4><?php echo HEADING_PAYMENT_METHOD; ?></h4> <div><?php echo $order->info['payment_method'] . ': ' . $order->info['cc_type']; ?></div>
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
That didn't work, but since I knew what to look for and what to replace it with, I went into admin/orders.php
I changed:
To read:Code:<td class="main"><strong><?php echo ENTRY_PAYMENT_METHOD; ?></strong></td> <td class="main"><?php echo $order->info['payment_method']; ?></td>
Thank you!Code:<td class="main"><strong><?php echo ENTRY_PAYMENT_METHOD; ?></strong></td> <td class="main"><?php echo $order->info['cc_type']; ?></td>
Michelle
Ok - just realized that won't work for PayPal payments - so I went back and changed it to
Thanks again!Code:<td class="main"><?php echo $order->info['cc_type'] . ': ' . $order->info['cc_type']; ?></td>
Michelle