Page 1 of 1

Hide the shopping cart button when no items are selected

Posted: 05 Aug 2025, 05:09
by trpgforum
Hello

I want to hide the small shopping cart button on bottom right on my redesigned website www.thomas-ruf.ch as long as it does not contain at least one item. I have tried everything using the “Automatically Show Cart” option, but I can't get it to work. 

All other settings work perfectly! 

Do you have any advice or a workaround using HTML/CSS/script?

Many thanks and best regards

Re: Hide the shopping cart button when no items are selected

Posted: 05 Aug 2025, 21:54
by mjau-mjau
You could add this to custom CSS:
Code
.x3-cart-is-empty #button_cart {
  display: none;
}
I have tried everything using the “Automatically Show Cart” option
That option about showing the actual cart sidebar, not the button itself.

Re: Hide the shopping cart button when no items are selected

Posted: 08 Aug 2025, 01:41
by trpgforum
That is perfect! Thank you so much!