Stop EFB from loading iframes on mobile
-
Hi, in the past you sent me the following script that would stop EFB from loading on mobile:
add_action( ‘wp_footer’, ‘custom_page_script’, 10 );
function custom_page_script(){
echo ‘
<script type=”text/javascript”>
var pixelRatio = window.devicePixelRatio || 1;
if(window.innerWidth/pixelRatio < 400 ) {
easy_fancybox_handler = null;
};
</script>
‘;
}I am wondering if you could send me script that would stop it from loading only iframes on mobile but still allow images to load in EFB on mobile.
Thanks!
Viewing 12 replies - 1 through 12 (of 12 total)
Viewing 12 replies - 1 through 12 (of 12 total)
- The topic ‘Stop EFB from loading iframes on mobile’ is closed to new replies.