Dear kennysteve,
You can open the file: modules\mod_sj_newsletter_popup\tmpl\default.php and find:
else
{
$('.show-error').remove();
$('.btn-button').after('<span class="show-error" style="color: red;margin-left: 10px"> Email is required </span>')
$(email).focus();
return false;
}
return false;
});
and add more following the code
setTimeout(closePopupTimeout,60000);
function closePopupTimeout() {
var this_close = $('.popup-close');
this_close.parents().find('.sj-popup-container').remove();
});
Hope it works
Thanks