js code below
{% if settings.display_popup_newsletter %}
{% endif %}js code below
{% if settings.display_popup_newsletter %}
{% endif %}Hi @nikz35 ,
you can try setTimeout in this if condition:
if (jQuery.cookie('emailSubcribeModal') != 'closed') {
setTimout(function() {
openEmailModalWindow();
}, 5000); // 5 second delay in ms.
};
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.