hi, can you please help me remove this price (in red circle) in cart drawer?
website: https://seasonalcollections.co/
hi, can you please help me remove this price (in red circle) in cart drawer?
website: https://seasonalcollections.co/
Hey @Senku ,
Please paste the following code in the end of component-cart-drawer.css file.
Here is how you can find component-cart-drawer.css file.
.cart-item__details > .product-option:first-child {
display: none;
}
This will ensure to display none the Product price in the Cart Drawer.
Please paste the following code and let me know if this work for you.
Thanks
i want to remove it at theme code
i want to remove the code that show the price in original theme code. can you show me the way?
You can use “Custom CSS” under “Theme Settings” in “Customize”
Using theme settings instead of code edits will help with future theme updates.
Add this code:
.cart-drawer a+.product-option {
display: none;
}
thank you so much