I want to hide product price on entire website. How to do.?
Because only customer who request quotations I will send them a quote. At least help me out to hide price in side cart
This topic has 6 replies, 3 voices, and was last updated 4 years, 2 months ago ago by Rose Tyler
I want to hide product price on entire website. How to do.?
Because only customer who request quotations I will send them a quote. At least help me out to hide price in side cart
Hello,
Add the below custom CSS to Theme Options > Custom CSS to hide prices
.content-product .price, .woocommerce-Price-amount,
.product_list_widget .descr-box .quantity, .product-content .price {
display: none;
}
Regards
Thanks for it. But when we add a code, we couldn’t alter product quantity in side cart. I want to alter product quantity in side car. Please help me out
Hello,
Ok, then replace the previous code by the code below
.content-product .price, .woocommerce-Price-amount, .product_list_widget .descr-box span.quantity, .product-content .price {
display: none;
}
Regards
Thanks…. But in this case I want to show the quantity changing buttons always visible. As of now its visible only on hover.
Please refer the screen: https://prnt.sc/w9mrdm
Quantity changing button should visible always.. Please help me out in this.
Hello,
Use the next custom CSS code:
.product_list_widget li:not(:hover) .quantity-wrapper {
visibility: visible;
opacity: 1;
transform: translateY(-5px);
}
Regards
The issue related to '‘Hide product price on entire website’' has been successfully resolved, and the topic is now closed for further responses