viktornadzam Posted August 27, 2016 Share Posted August 27, 2016 Hello everybody, I am thinking to set auto closing pop up window ("Product sucsessfull added to shopping cart") after 5 seconds if customer do not choose any opinion. Is it possible ? I am using Prestashop 1.6.1.4 Thank you so so much Victor 1 Link to comment Share on other sites More sharing options...
rocky Posted August 28, 2016 Share Posted August 28, 2016 Edit themes/default-bootstrap/js/modules/blockcart/ajax-cart.js and change line 746 at the end of the updateLayer function from: crossselling_serialScroll(); to: crossselling_serialScroll(); setTimeout(function() { $('.layer_cart_overlay, #layer_cart').fadeOut(); }, 5000); This will cause the popup to fade out after 5 seconds. 2 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now