Viewing 13 replies - 1 through 13 (of 13 total)
  • Plugin Contributor Max Bond

    (@max-bond)

    Hi!
    You have outdated jQuery on both sites!

    http://freshhome.ro
    jQuery loaded two times. Source code line 8:
    <script type='text/javascript' src='http://code.jquery.com/jquery-1.6.2.js'></script>
    You need to remove this completely!

    http://travelica.ro
    Source code line 43:
    <script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js?ver=3.8.1'></script>
    You need to update jQuery to version 1.10.2 (WordPress 3.8 standard)

    Thread Starter mr.achim

    (@mrachim)

    i done that on freshhome.ro, still not working.

    on travelica.. i have wp 3.8.1 , how can i update jquery ?

    Thread Starter mr.achim

    (@mrachim)

    ok its working on freshhome now πŸ™‚

    i dont know how to update the jquery for travelica.ro ..

    Thread Starter mr.achim

    (@mrachim)

    for freshhome.ro : something strange… the plugin its working only when i am loged on the website. if i logout its not working anymore. i have cleared the cache and no results

    for travelica.ro : i instaled jquery updater and its not working

    please help

    [Moderator Note: No bumping, thank you.]

    Plugin Contributor Max Bond

    (@max-bond)

    Hi!

    for freshhome.ro : something strange… the plugin its working only when i am loged on the website

    Check plugin settings page. Option “Enable plugin for logged in users only” must be disabled.

    for travelica.ro : i instaled jquery updater and its not working

    I see the site is still using jQuery 1.4.4.
    jQuery Updater didn’t help? Well… in this case you have to manually disable jQuery load string. First search in theme function.php file for this string:
    http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js
    if found – comment this string. If you don’t know how to comment the string post the code here I’ll help.

    Thread Starter mr.achim

    (@mrachim)

    fresh is working, thanks !

    @ travelica, i tryed with to comment like bellow and nothing :

    function my_scripts_method() {
    wp_deregister_script( ‘jquery’ );
    wp_register_script( ‘jquery’, ‘ /* http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js */ ‘);
    wp_enqueue_script( ‘jquery’ );
    }
    add_action(‘wp_enqueue_scripts’, ‘my_scripts_method’);

    Plugin Contributor Max Bond

    (@max-bond)

    Here is the right way:

    function my_scripts_method() {
    //wp_deregister_script( 'jquery' );
    //wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js');
    wp_enqueue_script( 'jquery' );
    }
    add_action('wp_enqueue_scripts', 'my_scripts_method');

    Thread Starter mr.achim

    (@mrachim)

    It’s working ! Thanks a lot !

    Thread Starter mr.achim

    (@mrachim)

    i made an update to freshhome.ro wp theme, and i don’t know why the fixed widget it isn’t working anymore. can you please help me ? thanks ..

    Plugin Contributor Max Bond

    (@max-bond)

    Hello!
    I see a lot of javascript errors on your site.
    The source of errors is WP Minify plugin! Disable it, then we can continue debuging.

    Thread Starter mr.achim

    (@mrachim)

    yes i think the problem was from minify. there are still a lor of errors ?

    Plugin Contributor Max Bond

    (@max-bond)

    No javascript errors!
    I see the widget is working now!

    Thread Starter mr.achim

    (@mrachim)

    thank you 007 ! πŸ™‚

Viewing 13 replies - 1 through 13 (of 13 total)

The topic ‘Plugin doesnt work’ is closed to new replies.