Magento 2: Get all shopping cart items, subtotal, grand total, billing & shipping address

This article shows how to get shopping cart items/products, subtotal and grand total of cart, and shipping and billing address entered while doing checkout in Magento 2. I will be using both Dependency Injection (DI) and Object Manager in the below example code. Using Object Manager – Get products id, name, price, quantity, etc. present … Read more

Magento: Payment method not displayed in Multiple Shipping Adresses Checkout

Problem: I have a payment method which is displayed well in general Magento checkout. But it is not displayed in Multiple Addresses Checkout. Solution: Please see the Model class of your payment module. The following variable should be set as true. /** * available for multi shipping checkouts */ protected $_canUseForMultishipping = true; Write the … Read more