This topic has 2 replies, 2 voices, and was last updated 3 years, 10 months ago ago by Olga Barlow
Hi,
I have two queries with regards to the wishlist function:
1. I need to remove the “add to wishlist” button on the product category image on the product category page?;
2. The “add to wishlist” button below the add to cart button on the single product page, how do I change the colour of the button, and also the height of the button?
Thank you.
Hello,
Add the below code to Theme Options > Custom CSS to hide the wishlist on the shop page and change the bg color for the single product
.product-view-default .et-wishlist-holder {
display: none;
}
.product-content .yith-wcwl-add-to-wishlist a.add_to_wishlist.button {
padding: 15px;
background: #009449;
color: #fff;
}
.product-content .yith-wcwl-add-to-wishlist a:hover {
background: #0088cf !important;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up