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