Since it's my first topic, please forgive me if I missed something.
I'm trying to create payment plugin for MasterCard Gateway Services. I faced some obstacles but before I wrote about these obstacles I'm wondering does NopCommerce Team intend to write a plugin for MasterCard as they made a wonderful job writing around 28 payment plugin??
One of the problems which I faced that the checkout page has a js object called "checkout". On the other hand, MasterCard gateway main javascript lib called with the same name as "checkout". I'm sure it's not a wise decision to edit on the NopCommerce core my self, as it will coast many problems, especially when updating to a new version. Am I right?
By the way, I'm working on show LightBox instead of redirecting the customer to another page for processing the payment.
Her is a snipping from the required javascript lib from MasterCard:
<script src="https://ap-gateway.mastercard.com/checkout/version/49/checkout.js"
data-cancel="cancelCallback"
data-beforeRedirect="Checkout.saveFormFields"
data-afterRedirect="Checkout.restoreFormFields">
</script>
So, using Jquery $.getScript wasn't a solution as I need to implement some attributes to the script object.
another problem is that I must f
Any guidelines are appreciated a lot.
Thanks in advance.
Best regards,
Mafdy.