Skip to content

frontend

Auto Added by WPeMatico

How to change the magento2 layout to all options in the personal area?

is there a faster way to change the layout from 2columns-left to 3columns to all the personal area pages (account, wishlist, orders etc..) ? i just got done creating this file: app/design/frontend/Vendor/Vendor/Magento_Customer/layout/customer_account_index.xml and adding this code: <?xml version=”1.0″?> <page xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”… Read More »How to change the magento2 layout to all options in the personal area?

How to show tier price catalog category view page in configurable product option select simple product in magento 2.4

To display tier prices for configurable products in Magento 2.4, you need to make sure that when a simple product (child product) is selected from the configurable product options, the tier prices for that simple product are correctly displayed product… Read More »How to show tier price catalog category view page in configurable product option select simple product in magento 2.4

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