Add these codes to the Custom CSS box and Save
Product Block
/* Product Block */
div.product-block .product-price {
display: none;
}
Shop – Category Page
/* Shop - Category Page */
body.view-list .product-price {
display: none;
}
All Products
/* All products */
.product-price {
display: none;
}
Cart Page
/* cart page */
p.cart-row-price {
display: none;
}
.cart-subtotal {
display: none;
}
Specific Products
With specific products, first, you need to create a tag with the name: nprice
Next, assign this tag for products where you want to remove the price then use code to Custom CSS box
/* Specific Products */
.tag-nprice .product-price {
display: none;
}
One Product
#1. You need to edit the product where you want to remove the price > Additional Info > Add a Code Block
#2. Paste code to Code Block
<!-- One Product -->
<style>
.product-price {
display: none;
}
</style>