Total cart Weight how to show order summary in magento 2.4.6
How can We achieve this? We get total weight of products of cart in Magento 2 by MagentoCheckoutModelCart class With objectManager $objectManager = MagentoFrameworkAppObjectManager::getInstance(); $cart = $objectManager->get(‘MagentoCheckoutModelCart’); $items = $cart->getQuote()->getAllItems(); $weight = 0; foreach($items as $item) { $weight += ($item->getWeight()… Read More »Total cart Weight how to show order summary in magento 2.4.6