Hi Guys,
Please change this code
$('.btn-button').after('<span class="show-error" style="color: #003bb3;margin-left: 10px"> Subscription Successfull </span>');
setTimeout(function () {
var this_close = $('.popup-close');
this_close.parent().css('display', 'none');
this_close.parents().find('.sj_newletter_popup_bg').removeClass('popup_bg');
}, 3000);
to:
$('.btn-button').after('<span class="show-error" style="color: #003bb3;margin-left: 10px"> Subscription Successfull </span>');
setTimeout(function () {
var this_close = $('.popup-close');
this_close.parents().find('.sj-popup-container').remove();
// var this_close = $('.popup-close');
// this_close.parent().css('display', 'none');
this_close.parents().find('.sj_newletter_popup_bg').removeClass('popup_bg');
}, 1500);
in file /modules/mod_sj_newsltter_popup/tmpl/default.php
Thanks & regards!