Home Forums WoodMart support forum woocommerce message/notice pops up

woocommerce message/notice pops up

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #25686

    emikim
    Participant

    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.
    #25741

    Bogdan Donovan
    Keymaster

    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

    #26485

    emikim
    Participant

    its working thank you so much

    #26495

    Artem Temos
    Keymaster

    You are welcome!

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘woocommerce message/notice pops up’ is closed to new replies.