• Resolved rebeccaolson

    (@rebeccaolson)


    Hello! I’m hoping this is a quick fix: After the most recent Woocommerce update, text appeared on the cart totals page next to tax “(estimated for the United States (US))”. I would like that text removed.

    I have CSS code entered that previously kept it hidden, but that seems to no longer be working:

    table.ecwid-productBrowser-cart-estimation,
    div.ecwid-productBrowser-cart-asterisk {
    display:none;
    ?}

    Any help would be appreciated! I’m having difficulty with my template on mobile/responsive devices, and the extra text is making the cart page very clunky.

    • This topic was modified 4 years, 5 months ago by rebeccaolson.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support kellymetal a11n

    (@kellymetal)

    Hi there,

    By default with WooCommerce, it should be possible to hide that little message using the following CSS:

    
    .woocommerce-cart .tax-rate small {
        display: none;
    }
    

    However, based on your previous snippet, it appears you are using Ecwid, rather than WooCommerce, so the CSS for that would be totally different. If you have switched over to WooCommerce, then you could try the above.

    Also though, your theme could affect/change that as well, in which case the above CSS may not work. In that case, I’d recommend reaching out to your theme developer to ask about this.

    I hope that helps!

    Thread Starter rebeccaolson

    (@rebeccaolson)

    Thank you so much for your quick response! That’s odd that the code is not for Woocommerce – I’ve only ever used Woocommerce, and the code was given to me by a developer.

    My theme sent out an update today, and with that update the tax text disappeared again (so the issue obviously was a conflict with the theme) – but I’ve saved the code you gave me, and will use it in the future if it happens again. Or would you recommend I replace the old code with this new code? Since the old code is (apparently) not for Woocommerce?

    Thank you so much!
    Rebecca

    Plugin Support kellymetal a11n

    (@kellymetal)

    Hi there Rebecca,

    Glad to hear the theme update resolved the issue! : )

    I don’t really have any experience with Ecwid, but as I understand it is an alternative to Woo for eCommerce on WordPress:
    https://www.ads-software.com/plugins/ecwid-shopping-cart/

    If you are not using it, and only using Woo, I think it should be safe to replace the old snippet with the snippet above.

    Though if it seemed to be working before, then it might be worth keeping the old snippet around somewhere just in case. ??

    Take care, and have a wonderful day!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove Tax Text on Cart Page’ is closed to new replies.