How to Make Magento eCommerce Store Faster?

How Enhance the Speed of your Magento Store? Magento 2 has been part of advanced ecommerce and comes with a lot of added features and they are not easy too. Many Magento Customization Service companies provide the Magento 2 Speed Optimization packages, Find some important tips and best practices as...

Magento 2: How to Get Guest Email Address in Checkout?

You can get guest and customer other information in your custom js like customerinfo.js in Magento_Checkout/js/model/quote: define( [ 'jquery', 'Magento_Checkout/js/view/payment/default', 'Magento_Checkout/js/model/quote', 'Magento_Checkout/js/action/place-order', ], function ($,Component,quote,placeOrderAction) { 'use strict'; return Component.extend({ defaults: { template: 'Company_Module/custompayment/form_template' }, getEmail: function () { if(quote.guestEmail) return quote.guestEmail; else return window.checkoutConfig.customerData.email; }, getLastName: function () {...