Quote Originally Posted by Fireflyz View Post
Thank you for this great mod, I love it but I have a big problem processing credit card payments with it.

I process credit cards off line and since I installed this mod (on 1.38a), I do not see the credit card "expiration date" anywhere in admin area and I need that information to process the payment. Please advise what to do.

Thanks for the help!
UPDATE:
I figured out the solution myself and here it is for those who might need it. By making this change you will get credit card type as well as expiration date in "Payment Method" field:

around line 348 on tracker.php find this code;

Code:
<td class="main"><?php echo $order->info['payment_method']; ?></td>

and replace with this:

Code:
<td class="main"><?php echo $order->info['cc_type']; echo ' ' . $order->info['cc_expires']; echo ' ' . $order->info['payment_method'];?></td>
cheers!