• Resolved jsoell02

    (@jsoell02)


    Hey there,

    i want to remove the tax information saying “inkl. MwSt.” behind the price.
    Do you have any idea how to remove this?

    I have asked Germanized Support and they said maybe it comes from the Theme Ocean Wp.

    Thanks for your help.

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hello @jsoell02,

    Thank you for reaching out,

    But the text you refer to is a suffix for the amount in WooCommerce and not in the theme: https://postimg.cc/sBHMJ6mY.

    To remove the suffix text, please navigate to WP Dashboard > WooCommerce > Settings > Tax > Tax Options; find and remove the text in the “Price display suffix” text input. Please check this screenshot: https://postimg.cc/k6Db33GY.

    For more information about the Price display suffix, please follow this link: https://woo.com/document/setting-up-taxes-in-woocommerce/#price-display-suffix.

    I hope it helps.
    Best Regards

    Thread Starter jsoell02

    (@jsoell02)

    Hey Shahin,

    thanks for your reply.
    Unfortunately the settings for tax have been empty already. See in the Screenshot: https://postimg.cc/T5YCNScL

    Because of this I thought it has to come from the Theme Ocean WP.
    Any idea how to fix it anyway?

    Thanks

    Hello @jsoell02,

    Thank you for reaching out,

    It could stem from a third party, but we don’t have an option for it; if you have any other plugin for WooCommerce check those plugins’ settings.

    If you are using one, it is worth checking the function.php file in the child theme. It can be added by WooCommerce actions manually.

    BTW you can use the CSS below in Customizing > Custom CSS/JS > CSS Code:

    .single-product .woocommerce-price-suffix {
        display: none;
    }

    Please read this link for more information about the CSS/JS code on the customizer: https://docs.oceanwp.org/article/354-add-custom-css-and-js-to-your-website.

    Note: If you have any cache plugin or server cache(CDN / Browser Cache and Cookies and …), you need to clear its cache contents or disable them to see your changes. Also, remember to click on the regenerate all assets file and data in Elementor > Tools(if you have Elementor).

    I hope that helps.
    Best Regards

    Thread Starter jsoell02

    (@jsoell02)

    Hey Shahin, thanks a lot.

    This helped for the Product Detail Page, the tax suffix is not showing up there anymore.
    Unfortunately on my starting page the tax suffix still shows up on the products.
    Do you have any idea how to remove this also?

    See more in the Screenshot.

    https://postimg.cc/tYWdFSgy

    Thanks a lot.

    Hello @jsoell02,

    The previous CSS only applied to single product pages. To remove tax suffixes on the entire site, use the following CSS:

    .woocommerce-price-suffix {
        display: none !important;
    }

    I hope it helps.
    Best Regards

    Thread Starter jsoell02

    (@jsoell02)

    Yes this helped. Thanks a lot!

    You’re welcome.
    I’m glad we could help.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Price incl. VAT. remove’ is closed to new replies.