woocommerce message/notice pops up
-
hello
is there a way to disable the pop up woocommerce message/notice for some messages , my plugin YITH PRODUCT SHIPPING FOR WOOCOMMERCE showa custom message before add to cart in product page , i dont want it to be in pop up .
thank you
Attachments:
You must be
logged in to view attached files.
Hi,
Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.
.cart .woocommerce-info {
position: relative;
-transform: none;
-webkit-transform: none;
animation: none;
-webkit-animation: none;
cursor: default;
margin-bottom: 20px;
z-index: 0;
}
.cart .woocommerce-info:after {
display: none;
}
.cart .woocommerce-info.hidden-notice {
animation: none;
-webkit-animation: none;
}
.cart .single_add_to_cart_button + .woocommerce-info {
margin-top: 5px;
}
Regards
its working thank you so much
The topic ‘woocommerce message/notice pops up’ is closed to new replies.