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

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!

Hi @Catherinee

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 tag and add the following code above tag: https://prnt.sc/KWtKYyZkDtYJ

Here is the code for Step 3:

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

Please let me know if it works. Thank you!

Best,
Daisy - Avada Support Team.

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:

Best,

Liz

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! :slightly_smiling_face:

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