From 566798719a67ba1821a20a1d4180723bd65fb335 Mon Sep 17 00:00:00 2001 From: vendidero Date: Fri, 29 Nov 2024 12:17:56 +0100 Subject: [PATCH] Hide the shopmark desc in mini cart (fallback). --- assets/css/layout.scss | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/assets/css/layout.scss b/assets/css/layout.scss index 2b0e2f19..454a70ad 100644 --- a/assets/css/layout.scss +++ b/assets/css/layout.scss @@ -82,10 +82,10 @@ body.theme-astra { } } - /** - * Hide (block) price labels added via the woocommerce_get_item_data filter - * while displaying classic shortcodes. Fallback-use only. - */ +/** + * Hide (block) price labels added via the woocommerce_get_item_data filter + * while displaying classic shortcodes. Fallback-use only. + */ .woocommerce-cart, .woocommerce-checkout { dl.variation { dt[class*="variation-gzd-"], dd[class*="variation-gzd-"] { @@ -94,6 +94,14 @@ body.theme-astra { } } +.woocommerce-mini-cart { + dl.variation { + dt[class*="variation-gzd-"] { + display: none !important; + } + } +} + .includes_tax, .tax_label { display: none !important; }