Hello,
We Really Apologize about the Delays caused and Appreciate your Patience! :)
- This is Definitely Possible! You can consider using the following JS Code to detect the Scroll Position only when the User is scrolling down:
jQuery(document).on( 'ready', function (event) {
var lastScrollTop = 0;
$(window).scroll(function(event){
var st = $(this).scrollTop();
if (st > lastScrollTop){
var scroll = $(window).scrollTop();
if( scroll >= 200 ) {
// Trigger Modal
}
} else {
// upscroll code
}
lastScrollTop = st;
});
});
Please let us know which Modal you are planning to use so that we can provide you with the Accurate Code for the Modal you are trying to use!
- This is Possible but you will need to use a GeoLocation API Service like this: https://freegeoip.net/ .
Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.