Viewing 17 reply threads
You must be logged in to reply to this topic.
Hello! We are not going to support a wishlist, so, using the Customizer, I’ve clicked up in the header where the Wishlist and Cart are and selected “Hide Wishlist.” But how do I then hide the “Add to Wishlist” link on the product page? Do I have to use custom CSS, like:
.wishlist {display:none;}
or is there a more “proper” way to handle through the Customizer?
Thank you!
Hello,
To remove the wishlist from the header tools, in your Customizer, just hover over the Tools and open it’s options. Here set OFF the wishlist element, like in the screenshot: https://postimg.org/image/lth2bjfxj/
To hide it from the shop page product list, add this code into your Additional Css menu:
.shop-products .product_item.style_normal .cl-actions .add_to_wishlist {
display: none;
}
Let us know.
Best regards!
I have tried this ccs code on my additional ccs menu but nothing happened.
Hello,
The css code you tried didn’t work because you had another style of wishlist. Add the css code below:
.product_item.style_large .cl-action.add_to_wishlist {
display: none;
}
See screenshot of what it looks like after adding the code :
https://ibb.co/eFvQLd
Let us know.
Best regards!
Thanks, it works on the shop page, but how can I get “Add to wishlist” removed from the product page. https://ibb.co/c8q2GJ
and this also from CART:https://ibb.co/iontOy
Hello,
1. To remove “Add to wishlist” from the product page add the css code below:
.single-product .cl-wishlist-share-wrapper .wishlist, .add_to_wishlist_button{
display:none;
}
2. To remove it from the cart add the code below:
table.shop_table .cart_item .product-data > .wishlist{
display:none;
}
Best regards!
The wishlist icon has started appearing on the shop bag again
please check the screenshot.
Hello,
Can you send the link where it shows. I opened product category and the wishlist icon is not there. See screenshot: https://ibb.co/hQDbjd
Let us know.
Best regards!
Hi
Please recheck the shop page or product category, the setting i set last week was “shop item style” as list but I don’t know how it went to masonry.
And How can i remove the “sort by” filter on the shop page?
Hello,
@kogostudio, Sorry for the late reply.
Please add this code to hide wishlist in category page:
.list-entries .product_item .cl-action.add_to_wishlist {
display: none;
}
https://postimg.cc/image/k60bjsufr/
-I checked the cart page and there is no wishlist showing: https://postimg.cc/image/orwfse8br/
-To remove the “Sort by” filter in category page, please add this code into your Custom Css menu:
.archive .cl-woocommerce-results-title {
display: none;
}
-The category page is indeed set as list.
Can you post the shop page link? I can’t seem to find it from the menu.
Best regards!
Thanks for the reply.
How can i get the price shown in ascending order?
Thanks
Hello,
Please add the css code below to Customizing > General > Custom Codes :
body[class*=” currency-“] .summary.entry-summary .price .woocs_price_code, body:not([class*=”currency-“]) .summary.entry-summary .price {
flex-direction: row;
justify-content: flex-start;
}
and also
.cl-price-rating span:not(.woocommerce-Price-amount):not(.woocommerce-Price-currencySymbol) {
flex-direction: row !important;
justify-content: flex-start !important;
}
Best regards!
Hello,
Yes you should add both of them. The first is for the individual item page and the second works for the shop summary.
Let us know.
Best regards!
Hey buddy
I get an error for the first code.
“Expected RBRACKET”
Hello,
I forgot a bracket in the css code. I added it and now it looks fine.
Let us know.
Best regards!
You must be logged in to reply to this topic.