jfrank Posted July 11, 2020 Share Posted July 11, 2020 Site URL: https://www.jadoredbyjody.com/ Hello, I am looking for assistance with my website check out page. When entering an amount larger than the stock availability it shows this message (file attatched). Is there a way to hide the exact numerical value? Link to comment
tuanphan Posted July 11, 2020 Share Posted July 11, 2020 Add to Home > Design > Custom CSS body.cart .Confirmation-message-3jBKM { visibility: hidden; } body.cart .Confirmation-message-3jBKM:before { visibility: visible; content: "Enter your new text"; display: block; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
rwp Posted July 12, 2020 Share Posted July 12, 2020 If you don't want it to show when you add to cart from a product page you will need to do the same for: .sqs-widgets-confirmation-content.clear .message Link to comment
jfrank Posted July 12, 2020 Author Share Posted July 12, 2020 On 7/11/2020 at 7:03 PM, tuanphan said: body.cart .Confirmation-message-3jBKM { visibility: hidden; } body.cart .Confirmation-message-3jBKM:before { visibility: visible; content: "Enter your new text"; display: block; } Link to comment
jfrank Posted July 12, 2020 Author Share Posted July 12, 2020 6 hours ago, rwp said: If you don't want it to show when you add to cart from a product page you will need to do the same for: .sqs-widgets-confirmation-content.clear .message You are so right. I checked and it does show on the product page. How would I code that? I tried this: .sqs-widgets-confirmation-content.clear .message3jBKM { visibility: hidden; }.sqs-widgets-confirmation-content.clear .message-3jBKM:before { visibility: visible; content: "Enter your new text"; display: block; } It did not work lol. Link to comment
rwp Posted July 12, 2020 Share Posted July 12, 2020 .sqs-widgets-confirmation-content.clear .message, body.cart .Confirmation-message-3jBKM { visibility: hidden; } .sqs-widgets-confirmation-content.clear .message:before, body.cart .Confirmation-message-3jBKM:before { visibility: visible; content: "Enter your new text"; display: block; } Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.