Skip to content

Commit

Permalink
Hide the shopmark desc in mini cart (fallback).
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisnissle committed Nov 29, 2024
1 parent b36612b commit 5667987
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions assets/css/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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-"] {
Expand All @@ -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;
}
Expand Down

0 comments on commit 5667987

Please sign in to comment.