Pop-up stays opend under FireFox for Android
-
Hi,
Please review your code in terms of using the preventDefault function as there is an issue with firefox for android that makes the whole plugin hard to use. When the page is loaded the pop-up is displayed and could not be closed.
I fixed this for me with custom code added in my theme’s js file. This is in case anybody else has the same problem.
jQuery(document).ready(function(){ jQuery('.ffl-popup-link').on('click',function(){ jQuery('div.ffl-popup-content').show(); }); jQuery('.ffl-close-popup-link').on('click',function(){ jQuery('div.ffl-popup-content').hide(); }); }); jQuery(window).load(function(){ if (jQuery('div.ffl-popup-content').css('display').length!=4) { jQuery('div.ffl-popup-content').hide(); }; })
https://www.ads-software.com/plugins/flexible-frontend-login/
- The topic ‘Pop-up stays opend under FireFox for Android’ is closed to new replies.