Hello there,
With Lightbox Plus Colorbox, add that code in your functions.php to exclude the script which have a conflict with WP Deferred JavaScripts:
// Don't defer this script.
add_filter( 'do_not_defer', 'exlude_lightbox_scripts' );
function exlude_lightbox_scripts( $do_not_defer ) {
$do_not_defer[] = 'jquery-colorbox';
return $do_not_defer;
}
You can try to search every script loaded in your plugin by the way of “wp_enqueue_script()” to exclude the scripts one by one to find the one that should not be differed.
P.S: I found all of that in the readme.txt of the plugin.
Thread Starter
Saliom
(@saliom)
To have this bug, you need to have a small height/weight resolution, and the iPhone 5 have a Retina and full HD resolution. Try to have the same height/weight on your navigator (lire Firefox) like on my first screenshot ;).
Thread Starter
Saliom
(@saliom)
Sorry for my late reply, and thanks for your good job :).