Home Forums WoodMart support forum Pop up window after add to cart

Pop up window after add to cart

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #632130

    joelmellin
    Participant

    Hi!

    Could you help me in removing the buttons on the pop up that is showing after something is added to cart? I only want to show the text that it had been added to the cart. I don’t want the button “continue shopping” or the button “view cart” to be visible.

    #632224

    Hello,

    I visited your website and added a product to my cart; however, I did not notice the buttons in the shopping cart widget area.

    So please share some screenshots where you want to make changes in category pages. so I can better understand your issue? This will help me guide you more effectively.

    Best Regards

    #632250

    joelmellin
    Participant

    It is this one I meant:

    https://snipboard.io/vtoaJ8.jpg

    #632392

    Hello,

    Please add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:

    .popup-added_to_cart .close-popup { 
        display: none !important; 
    }
    .popup-added_to_cart .view-cart {
        display: none !important;
    }

    Best Regards

    #632414

    joelmellin
    Participant

    Thank you, that worked.

    Is it possible to also adjust the time to 1500 ms instead of either 1000 or 2000 as it is now in the settings?

    Is it also possible to make the text a bit smaller?

    https://snipboard.io/J82mHL.jpg

    • This reply was modified 8 months, 3 weeks ago by joelmellin.
    #632505

    Hello,

    01. Sorry, but there is no option available for that in Theme Settings.
    It requires customizations and this is beyond our limitations and support policy.

    02. Please add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:

    .popup-added_to_cart h3 {
        font-size: 15px !important;
    }

    Best Regards

    #689741

    joelmellin
    Participant

    Hello,

    After the new update of Woodmart and Woodmart core this fix is not working anymore:

    .popup-added_to_cart .close-popup {
    display: none !important;
    }
    .popup-added_to_cart .view-cart {
    display: none !important;
    }

    .popup-added_to_cart h3 {
    font-size: 15px !important;
    }

    The buttons started to be visible again.

    #689785

    Hello,

    Please try using the below Custom CSS code and paste it to Dashboard >> Theme Settings >> Custom CSS >> Global CSS section:

    .wd-popup-added-cart .close-popup {
    display: none !important;
    }
    .wd-popup-added-cart .view-cart {
    display: none !important;
    }
    
    .wd-popup-added-cart h3 {
    font-size: 15px !important;
    }

    Best Regards,

    #689863

    joelmellin
    Participant

    Thank you, it worked!

    #689892

    Hello,

    You’re Most Welcome!.

    Feel free to write back anytime. If you need further assistance, we are always here to help you.

    If you have a minute, we’d truly appreciate your feedback — it helps us improve the product and shape future updates more effectively. We’d love your feedback on our theme: https://tally.so/r/w4l54k

    Thanks for contacting us.
    Have a great day.

    Topic Closed.
    Best Regards.

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

The topic ‘Pop up window after add to cart’ is closed to new replies.