On my webpage: http://www.fotomag.net image previews of featured image are ok, but on attempt to enlarge them, black empty box appears..
what is wrong?
br, igor
On my webpage: http://www.fotomag.net image previews of featured image are ok, but on attempt to enlarge them, black empty box appears..
what is wrong?
br, igor
I managed to solve the problem by adding lines to end of functions.php :))
function jquery_initialise()
{
#DEREGISTER DEFAULT JQUERY INCLUDES
wp_deregister_script('jquery');
#LOAD THE GOOGLE API JQUERY INCLUDES
wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js', false, '1.4.2', false);
#REGISTER CUSTOM JQUERY INCLUDES
wp_enqueue_script('jquery');
}
#INITIALISE JQUERY LIBRARY
add_action('init', 'jquery_initialise');
br, igor
Glad that you solved the problem. Another (maybe better) solution can be found here: http://www.kriesi.at/support/topic/wp-31-breaks-lightbox
Thanks.. :)
Glad that I could help you :)
You must log in to post.