How do you remove the "You qualify for free shipping" progress bar from the cart

Solved

How do you remove the "You qualify for free shipping" progress bar from the cart

Catherinee
Visitor
3 0 0

When items are added to my cart, I would like to remove the progress bar that says "Congratulations! You qualify for free shipping" completely. Does anyone know how to do this? My theme is Emerge and URL is: https://awaystudios.com.au/

Thank you!


Screenshot 2025-02-13 at 7.48.06 am.png

Accepted Solution (1)

DaisyVo
Shopify Partner
4275 467 561

This is an accepted solution.

Hi @Catherinee 

DaisyVo_0-1739407070549.png

Since it is a block, if you want to remove it, you can only remove all text here.
And if you still want to continue removing this text
I hope you are well. You can follow our instructions below:
1/ Shopify admin > Online store > Edit code: https://prnt.sc/M4p-gua99Uf4
2/ Search for "theme.liquid" file: https://prnt.sc/b6xveIKe-Rh2
3/ Open the file and search for </head> tag and add the following code above </head> tag: https://prnt.sc/KWtKYyZkDtYJ

 

Here is the code for Step 3:

 

 

{% style %}
.cart--shipping-message {
    display: none !important;
}
{% endstyle %}

 

 

DaisyVo_1-1739407242774.png

 

Please let me know if it works. Thank you!

Best,
Daisy - Avada Support Team.



Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution

View solution in original post

Replies 4 (4)

DaisyVo
Shopify Partner
4275 467 561

This is an accepted solution.

Hi @Catherinee 

DaisyVo_0-1739407070549.png

Since it is a block, if you want to remove it, you can only remove all text here.
And if you still want to continue removing this text
I hope you are well. You can follow our instructions below:
1/ Shopify admin > Online store > Edit code: https://prnt.sc/M4p-gua99Uf4
2/ Search for "theme.liquid" file: https://prnt.sc/b6xveIKe-Rh2
3/ Open the file and search for </head> tag and add the following code above </head> tag: https://prnt.sc/KWtKYyZkDtYJ

 

Here is the code for Step 3:

 

 

{% style %}
.cart--shipping-message {
    display: none !important;
}
{% endstyle %}

 

 

DaisyVo_1-1739407242774.png

 

Please let me know if it works. Thank you!

Best,
Daisy - Avada Support Team.



Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
Catherinee
Visitor
3 0 0

Hi Daisy,

That worked! I don't mind the line being there as long as the text is removed.

Thank you so much for your help, have a great day! 🙂

LizHoang
Shopify Partner
1250 158 196

Hi @Catherinee 

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file theme.css and add this code at the end of the file

 

.cart--shipping-message {
    display: none !important;
}

 

Result: 

LizHoang_0-1739409074779.png

 

Best,

Liz

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Check our Joy Rewards & Loyalty Program
Catherinee
Visitor
3 0 0

Thank you for your help Liz! I managed to resolve it 🙂