New Shopify Certification now available: Liquid Storefronts for Theme Developers

Remove the cart message "Please be aware that checkout currency" from header

Solved
jay113
Tourist
18 0 2

At some point I put this message on my cart page and now I cant find where to remove it. Can someone please help me

 

URL

handsdownpro.com.au

 

Screenshot 2023-10-13 160314.png

Accepted Solution (1)
Beae_Anthony
Shopify Partner
436 167 168

This is an accepted solution.

Hi @jay113 ,

This is Anthony from Beae Landing Page Builder, and I’m happy to assist you today.

 

While I acknowledge that this issue falls short of the desired outcome, I have an idea that I believe might be of help:

1. Go to Online Store -> Theme -> Edit code
2. Open your theme.liquid file
3. Paste below code before </body>:

<style>
.bacurr-checkoutNotice {
    display: none !important;
}
</style>

 

Best regards,

Anthony

Beae - The NextGen Page Builder


- Was my answer helpful? Please hit Like or Mark it as solution!
- Get in touch with us: App Store | Blog

View solution in original post

Replies 5 (5)
Beae_Anthony
Shopify Partner
436 167 168

This is an accepted solution.

Hi @jay113 ,

This is Anthony from Beae Landing Page Builder, and I’m happy to assist you today.

 

While I acknowledge that this issue falls short of the desired outcome, I have an idea that I believe might be of help:

1. Go to Online Store -> Theme -> Edit code
2. Open your theme.liquid file
3. Paste below code before </body>:

<style>
.bacurr-checkoutNotice {
    display: none !important;
}
</style>

 

Best regards,

Anthony

Beae - The NextGen Page Builder


- Was my answer helpful? Please hit Like or Mark it as solution!
- Get in touch with us: App Store | Blog
jay113
Tourist
18 0 2

This worked. Thank you!

Made4uo-Ribe
Shopify Partner
4241 980 1195

Hi @jay113 

Try this one,. 

  • From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  • Find the theme that you want to edit and click on "Actions" and then "Edit code".
  • In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

.bacurr-checkoutNotice {
    display: none !important;
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1697181371565.png
Please don't forget to 

Like

 and 

Mark Solution 

to the post that helped you. Thanks!
Sip, savor, and support – your

Coffee Tip

 helps us keep coding magic.❤️❤️❤️
Need a knowledgeable developer? Come and visit us at

Made4uo.com


PageFly-Henry
Globetrotter
524 132 107

Hi @jay113 

This is Henry from PageFly - Landing Page Builder App

 

You can try this code by following these steps: 

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file -> Save

 

.big-ol-cart-notice.bacurrcheckoutNotice {

    display: none !important;

}

 

Hope that my solution works for you.

Best regards,

Henry | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

jay113
Tourist
18 0 2

This didn't work 😓