Magento 2 redirect customer Registration to checkout page
If you want to redirect your customer in checkout page after customer registration success. Then you need to follow below steps to complete this process. 1). Create di.xml file at app/code/Magento/Tutorials/etc/ folder <?xml version=”1.0″?> <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:ObjectManager/etc/config.xsd”> <type name=”Magento\Checkout\Model\Session”> <plugin name=”redirect_to_checkout” type=”Magento\Tutorials\Plugin\CheckoutRedirect” /> </type> </config> 2). Create […]