After upgrading your store to Magento 2.3, facing the PayPal issue in Magento 2.3 checkout or order placement?
The upgraded store works fine with adding products to the cart, checkout, and placing the order but fails to send the order confirmation email!
Get delivered a seamless Magento solution that suits your business!!!
You get an exception like:
How to fix PayPal Magento 2.3 checkout issues?
Try the below steps to get rid of this PayPal problem while checkout and order placement:
Get the below code in vendor/magento/module-checkout/view/frontend/web/js/action/select-payment-method.js
define([ '../model/quote' ], function (quote) { 'use strict'; return function (paymentMethod) { if (paymentMethod) { paymentMethod.__disableTmpl = { title: true }; } quote.paymentMethod(paymentMethod); }; }); and replace it with: define([ '../model/quote' ], function (quote) { 'use strict'; return function (paymentMethod) { /*if (paymentMethod) { paymentMethod.__disableTmpl = { title: true }; }*/ quote.paymentMethod(paymentMethod); }; });
Compile the code.
Leave a Reply