x

How do I remove the "Additional taxes and fees will be calculated at checkout" notification?

How do I remove the "Additional taxes and fees will be calculated at checkout" notification when looking at shopping cart? It is off putting as a customer to see that there may be hidden fees. All of my costs are upfront, so I do not need that note to be there for customers to see.

220 Views
Message 1 of 3
Report
2 REPLIES 2
Super Seller

@TOPDEVIL ,

 

I don't think there is a way to remove this via a setting however normally you could hide this with CSS. There is no way to add custom css directly to the square online site (it wont accept in directly in the  header code). However building on the workaround described by @CodeAndTonicHQ here:

 

https://www.sellercommunity.com/t5/Seller-Community-Australia/ct-p/Seller_Community_AU

https://codeandtonic.com/blog/make-any-custom-designs-in-square-online-with-custom-css-2022

 

You can hide the message.

 

In the square online dashboard, under tracking tools create a new header code (give it a name that reminds you of what it does)

 

Add the following code:

 

<script>
document.head.insertAdjacentHTML("beforeend", `<style>
/* CSS BELOW */

.cart-fees-message {
display:none;
}

/* CSS ABOVE */
</style>`);
</script>

 

Once you save it,  you may need to republish the site (didn't need to in my testing).

 

What this code does is runs a script on page load which adds the CSS style code that hides the message, this will at least hide the message from your users and hopefully remove the confusion

 

Regards,


Bruce

 

Bruce Wilson
Owner | Vigneron | Distiller
214 Views
Message 2 of 3
Report
Square Community Moderator

Thanks for sharing, @lawnbrook โ€ผ๏ธ I didn't know this site existed, and I'm sure A LOT of users of the older Weebly editor will find this information incredibly useful!

209 Views
Message 3 of 3
Report