Modifying edd-cart-added-alert
-
I would like the edd-cart-added-alert to remain in place, and not disappear.
In a previous version of edd, I believe this was achieved with the following JavaScript:
if( response != ‘incart’ ) {
// Show the added message
$(‘.edd-cart-added-alert’, container).fadeIn();
setTimeout(function () {
$(‘.edd-cart-added-alert’, container).fadeOut();
}, 3000);
}Now, however, edd has changed the above script to:
( e(".edd-cart-added-alert",n) .fadeIn(), setTimeout( ( function() {e (".edd-cart-added-alert",n) .fadeOut() } ) ,3e3 ) ),I really do not know what is going on in the newer version of the alert. All I want to do is ensure that the alert remains in place, or at least remains in place for longer. How can I achieve this?
The page I need help with: [log in to see the link]
The topic ‘Modifying edd-cart-added-alert’ is closed to new replies.