cancel
Showing results for 
Search instead for 
Did you mean: 

Estimate Shipping and Tax

   Did you know you can see the translated content as per your choice?

Translation is in progress. Please check again after few minutes.

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...

2 REPLIES 2

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.

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