Hi @orki
Twenty Twenty-Four is a block theme, so you won’t find the Customizer. Instead, you need to use the Site Editor to make any changes. Follow these steps if you want to remove the cart icon completely:
- Go to
Appearance > Editor
.
- Click on the header part.
- Click on the cart icon and delete it.
If you want to hide the cart block conditionally, consider adding the “Block Visibility — Conditional Visibility Control for the Block Editor” plugin.
See Screenshot: https://ibb.co/BtF76kb
Additionally, you can hide the cart using CSS Here is the CSS code:
/* Hide WooCommerce menu cart */
header .wc-block-mini-cart__button {
display: none !important;
}
I hope this helps! Let me know if you have any questions.
Regards,
Jahid
-
This reply was modified 6 months, 1 week ago by Jahid.
-
This reply was modified 6 months, 1 week ago by Jahid.
-
This reply was modified 6 months, 1 week ago by Jahid.