Viewing 13 replies - 1 through 13 (of 13 total)
  • Plugin Contributor Dalton Rooney

    (@daltonrooney)

    Hi Melissa,
    I can see the problem right away – for some reason jQuery is not being loaded. This is odd, because the enqueue function is in the plugin at line 339 and is working everywhere I’ve tried it. Can you deactivate and delete the plugin, and re-install it?

    One other thing that should work as a quick fix is to add this:

    if (!is_admin){
       wp_deregister_script('jquery');
       wp_register_script('jquery', ("https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"), false, '1.4.2', false);
       wp_enqueue_script('jquery');
     }

    to the functions.php file in your theme directory. It shouldn’t be necessary, but it should force jQuery to load.

    Cheers,
    Dalton

    Thread Starter MelissaGraf

    (@melissagraf)

    Just deactivated, deleted, reinstalled and reactivated; no change.

    Add it anywhere in the functions.php?

    Plugin Contributor Dalton Rooney

    (@daltonrooney)

    Yeah, you should be able to add it right at the end, before the closing ?>

    Thread Starter MelissaGraf

    (@melissagraf)

    Added! Still nothing. Hrm.

    Plugin Contributor Dalton Rooney

    (@daltonrooney)

    OK, I’m out of ideas. If you feel comfortable sending me your WP login information I can take a look. [email protected]

    Thread Starter MelissaGraf

    (@melissagraf)

    I’m sure I’ve screwed something up somewhere. My whole WP is a bit of a mess. ??

    Sent.

    Plugin Contributor Dalton Rooney

    (@daltonrooney)

    Shoot! It’s a bug in the latest version. The correct code should be:

    if( !is_admin()){
       wp_deregister_script('jquery');
       wp_register_script('jquery', ("https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"), false, '1.4.2', false);
       wp_enqueue_script('jquery');
    }

    If you add that to your functions.php you should be back in business, and I’ll update the plugin ASAP.

    Dalton

    Thread Starter MelissaGraf

    (@melissagraf)

    Huzzah! It works. Thank you very much. ??

    Plugin Contributor Dalton Rooney

    (@daltonrooney)

    Woohoo!

    Your site looks great, by the way. Very nice work…

    Dalton

    Thread Starter MelissaGraf

    (@melissagraf)

    Thanks. The CSS is a bit of a hacked-together mess (I learned as I went along), but it’s doing the job!

    And thank you very much for both making a great plugin, and for responding so quickly to cries for help. ?? It is much appreciated.

    Thread Starter MelissaGraf

    (@melissagraf)

    ‘Portfolio Slideshow’ should work with WP 3.0.2, right?

    Plugin Contributor Dalton Rooney

    (@daltonrooney)

    Yeah, I checked the changelog audits very minor update – everything should workfine. Done upgrade to 3.1 when it comes out until I have a chance to test, though! ??

    Thread Starter MelissaGraf

    (@melissagraf)

    All still works. Thank you! ??

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘[Plugin: Portfolio Slideshow] Broken after update?’ is closed to new replies.