MW_Storecreditpro

by Peter D.
1. Open mw_storecreditpro/checkout/onepage/credit.phtml and find the following lines:
updateCheckout();
2. Replace them with:
if ('undefined' !== typeof updateCheckout) {
updateCheckout();
}
if ('undefined' !== typeof FireCheckout) {
checkout.update(checkout.urls.shopping_cart);
}
3. Open tm/firecheckout/checkout/payment.phtml and insert the following code:
<?php echo Mage::helper('core/mwstorecreditpro')->formOnepageCheckoutCredits(); ?>
4. Replace the next code:
var payment = new Payment('payment-method');
with
var payment = new Payment('checkout-payment-method-load');

Recent articles

Back to top