Multipage Checkout Payment Bug

deruitern's picture
Offline
Joined: 10/12/2010
Juice: 3
Multipage Checkout Payment Bug

I cant seem to submit any credit cards with Javascript enabled while using this module. The credit card data does not show up in the POST data and it keeps telling me that no credit card number or CVV number was entered. There is some jQuery in uc_payment, line 134 of uc_payment.js

$('#payment_details').empty().append(details);

that is the problem. I was able to resolve this issue by changing line 75 of uc_multipage_checkout_payment.module, by changing the following line from:

'#value' => '<div>' . $payment_details . '</div>',

to

'#value' => '<div id="payment_details">' . $payment_details . '</div>',

and adding an id for the payment details pane. I can submit a patch, but not sure where to post it. Thank you for contributing this module.

Multipage Checkout By: half_brick (20 replies) Sun, 06/29/2008 - 18:05