After a period of 15seconds while guest are browsing your site (per page), they are presented with the standard Login box, in an attempt to gain their registration. DEMO -> HERE just wait 15seconds LOL
Place the following in templates/yourTemplate/_sub_footer.html file, right at the end, after everything else.
<?php
if(isMember()){}else{?>
<script>
setTimeout(function(){
$(showPopupLoginForm)
}, 15000); // 15 seconds
</script>
<?php } ?>
That's it...
PS: Would love to hear your opinions on this idea.
