Tagged: related products
-
AuthorPosts
-
November 25, 2016 at 3:32 pm #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
November 26, 2016 at 7:31 am #717153Hey 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,
RikardNovember 28, 2016 at 9:59 am #717635Hey 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
AlexNovember 29, 2016 at 6:14 am #718109Hi,
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,
RikardNovember 29, 2016 at 5:59 pm #718416Hey, 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
December 1, 2016 at 3:40 pm #719287Hi!
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,
IsmaelDecember 5, 2016 at 11:41 am #720411Hey Ismael,
added this code, no changes on home or category pages.
December 7, 2016 at 3:43 pm #721526Hi,
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,
YigitNovember 5, 2020 at 10:30 pm #1258740Hello, 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.
November 7, 2020 at 7:43 am #1259008Hi 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 -
AuthorPosts
- You must be logged in to reply to this topic.