Magento 2 – Get Cart Total in Observer
I needed to get the cart total in my observer. Here is the code I have: use MagentoFrameworkEventObserver; use MagentoFrameworkEventObserverInterface; use PsrLogLoggerInterface; class DisablePayment implements ObserverInterface { protected $_logger; public function __construct( MagentoCustomerModelSession $customerSession, LoggerInterface $logger ) { $this->_customerSession =… Read More »Magento 2 – Get Cart Total in Observer