Home Forums Trusted Pro How to hide the woo commerce buttons on home page Reply To: How to hide the woo commerce buttons on home page

#4500
Yazmin
Keymaster

In the Customizer, go to ‘Additional CSS’ and add the following CSS code:

.top-login,
.top-cart{
display: none;
}

The code above will also remove the login/account. If you just want to remove the cart but keep the login/account, the code should be this:

.top-cart{
display: none;
}