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
April 19, 2018 at 8:20 pm
#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;
}