- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2020
02:44 PM
02-20-2020
02:44 PM
Estimate Shipping and Tax
I'm working on Magento 2.3
I want to unhide this item when page open
Now by default (Estimate Shipping and Tax) is hidden
please help me...
Labels:
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2020
08:07 PM
02-20-2020
08:07 PM
Re: Estimate Shipping and Tax
Hello @houman_ahghari
Override Magento_Checkout\web\js\view\summary\cart-items.js and find
isItemsBlockExpanded
function.
Replace it with the following:
isItemsBlockExpanded: function () { //return quote.isVirtual() || stepNavigator.isProcessed('shipping'); return true; }
Thanks.
Problem solved? Click Kudos and "Accept as Solution".
200+ Magento 2 Extensions for Enhanced Shopping Experience.
200+ Magento 2 Extensions for Enhanced Shopping Experience.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2020
10:52 AM
02-21-2020
10:52 AM
Re: Estimate Shipping and Tax
Hi
thanks for help
I did, but it didn't matter
maybe need CSS or script?
because the default is : body: none and when body: block is open
thank. and please help me