Magento pass billing and shipping info to Sagepay module from IWD cart -


i using magento 1.7 iwd onepage checkout sagepay payment module.
(http://www.interiorwebdesign.com/magento/magento-one-step-checkout-module.html & http://www.magentocommerce.com/magento-connect/ebizmarts-sage-pay-suite-ce-sage-pay-approved.html)

the sagepay module works fine standard checkout, onepage checkout shipping , billing not pass , there enter shipping info error, or enter billing info.

the validation script looks shipping 1st, shipping 1st error. shipping can passed unchecking ship address, , rechecking it. there error enter billing address.

the billing address gets passed if page loads fields filled, cache etc.

so seems data can passed, if there in right order/time.

is there code add duplicate check/uncheck ship address or code pass billing info? best place out code?

find checkout button , add:

billing.save();   

to

onclick="checkout.save(); return false;" 

to

onclick="billing.save(); checkout.save(); return false;" 

Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -

php - Accessing static methods using newly created $obj or using class Name -