Ok
To update, Issues 1 has been solved, Issue 2 still stands and i cannot work it out
just incase you want to know how i fixed it, i opened up paypalsp.php and paypalwpp.php and changed:
Code:
'if (value == "Switch" || value == "Solo") {' .
' document.checkout_payment.paypalwpp_cc_issue_month.disabled = false;' .
' document.checkout_payment.paypalwpp_cc_issue_year.disabled = false;' .
' document.checkout_payment.paypalwpp_cc_checkcode.disabled = true;' .
' if (document.checkout_payment.paypalwpp_cc_issuenumber) document.checkout_payment.paypalwpp_cc_issuenumber.disabled = true;' .
to
' document.checkout_payment.paypalwpp_cc_issue_month.disabled = true;' .
' document.checkout_payment.paypalwpp_cc_issue_year.disabled = true;' .
' document.checkout_payment.paypalwpp_cc_checkcode.disabled = false;' .
' if (document.checkout_payment.paypalwpp_cc_issuenumber) document.checkout_payment.paypalwpp_cc_issuenumber.disabled = false;' .
this allows you to enter a issue number and CVV number for a solo card.
I am a bit stuck on the maestro problem though