Skip to content

Hiding The Cart Count

Always Hide


[rb_cart_icon]
<style>
.rb-cart-count {
display: none;
}
</style>

Hide Only with 0 Items

If you want to hide the cart count only when no items are in the cart, you can add this script below the shortcode.

1
[rb_cart_icon]
<script>
const cartCount = document.querySelector(".rb-cart-count");
if (cartCount && cartCount.textContent === "0") {
cartCount.style.display = "none";
}
</script>