Home › Forums › WoodMart support forum › Error message does not show on the checkout page › Reply To: Error message does not show on the checkout page
October 12, 2022 at 9:28 am
#413064
Artem Temos
Keymaster
Try to add the following code snippet to the Custom JS area on the document ready in Theme Settings to fix this issue.
if(jQuery('body').hasClass('woocommerce-checkout')) {
jQuery('.login-form-side .woocommerce-notices-wrapper').remove();
}