Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #716887

    Hey,

    I want to hide vat and shipping (ex. MwSt. zzgl. Versandkosten) on categorys and carusel elemtns on homepage. I only want to have this on single product + checkout, related products.

    I found this solution: https://kriesi.at/support/topic/hide-vat-and-shipping-info-on-shop-overview-page/

    But this dosent work for me.

    .related.products .woocommerce-de_price_taxrate {
        display: none;
    }

    added to css, but didnt worked.

    Best regards

    #717153

    Hey combra,

    I’m not sure if I understood you completely but please try this in Quick CSS:

    .single-product .tax-info {
      display:none;
    }

    If that is not what you are looking for then please try to explain a bit further or post a screenshot of the items you would like to hide.

    Best regards,
    Rikard

    #717635

    Hey Rikard,

    thanks, but this isnt what I needed.

    I want to hide vat and delvery price on categorys and show overview, not @ single or cart.

    Best regards
    Alex

    #718109

    Hi,

    Ok, thanks for the info. Please try this instead:

    .archive.woocommerce .tax-info {
      display:none;
    }

    If that is not what you’re looking for either then please post links to example pages of where you want to hide it.

    Best regards,
    Rikard

    #718416

    Hey, thanks for your help. But with that code, nothing changed. I posted my link @ private area. I dont want to show the tax on homepage + any category.

    Best regards,

    Alex

    #719287

    Hi!

    Please adjust the code a bit.

    .archive ul.products .product p.shipping-costs-info, .archive ul.products .product p.tax-info {
        display: none;
    }
    
    .home ul.products .product p.shipping-costs-info, .home ul.products .product p.tax-info {
        display: none;
    }

    Best regards,
    Ismael

    #720411

    Hey Ismael,

    added this code, no changes on home or category pages.

    #721526

    Hi,

    I suspect there might be an error in your custom CSS code. CSS codes posted by Rikard and Ismael should have worked. Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Yigit

    #1258740

    Hello, I am trying to remove several information that is shown above the related products thumbnail

    1. Tax rate
    I was able to remove the “incl. VAT” information with the following code (in Quick CSS of my Child Theme > General Styling)

    .related.products .woocommerce-de_price_taxrate {
    display: none;
    }

    I want to also remove the following information shown on top of the related products thumbnail picture
    2. “plus shipping”
    3. “Delivery Time: approx. 3-4 workdays”
    4. The information from the “Hinweis für Versand in Nicht-EU-Länder”-field that is from the GermanMarkte Plugin (WooCommerce > GermanMarket > Products and then under the products tab it is the first field where text can be added, the English translation of the default text is something like this: “By delivery in non-EU countries additional country-specific import duties, taxes and fees can result.”)

    Could you please let me know what the codes are to also remove these 3

    Thank you.

    #1259008

    Hi mebi,

    Please try this CSS as well:

    .single-product small.wgm-info.wgm-extra-costs-eu, .single-product div.shipping_de_string, .single-product div.woocommerce_de_versandkosten {
      display: none;
    }

    Best regards,
    Rikard

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.