• Resolved dpcontact

    (@dpcontact)


    Hi there, congrats for your pluging among all I saw it looks the best!

    I am very new at this and just Installed “Easy Fancybox” using WP 2.9 as my theme doens´t allow me to upgrade it.

    when i insert the Image and click on it the window overlay opens fine but doesn’t want to close! I Uninstalled the another plugging’s in case of conflict and still the same ;/ could you please advise why this is happening? as I am really stocked and don´t now what to do 🙁

    Link for the image Website: http://www.languagecontacts.com/easy-fancybox-test/

    Thanks in advance

    http://wordpress.org/extend/plugins/easy-fancybox/

Viewing 1 replies (of 1 total)
  • Hi, there is a line

    <script type="text/javascript" src="http://www.languagecontacts.com/wp-content/themes/theme1035/js/jquery-1.3.2.js"></script>

    in your page source in the HTML head section. You need to make that go away because it’s loading jQuery on top of the one included by WordPress. There can only be one jQuery library…

    You can probably find the related code in your themes header.php

    Replace it with:

    <script type="text/javascript">
    if (typeof jQuery == 'undefined') {
        var script = document.createElement('script');
        script.type = "text/javascript";
        script.src = "http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js";
        document.getElementsByTagName('head')[0].appendChild(script);
    }
    </script>

Viewing 1 replies (of 1 total)

The topic ‘Easy Fancybox doesnt Work’ is closed to new replies.