Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Issue is that smart-slideshow-widget.php calls for an outdated jQuery-ui script, which conflicts with changes made in WP 3.5. The plug-in should instead use the jQuery scripts that are included with WordPress.

    So replace

    (around line: 413)
    wp_enqueue_script('jQuery-UI-Effects', WP_PLUGIN_URL . '/smart-slideshow-widget/js/jquery-ui.min.js');

    with

    wp_enqueue_script('jquery-effects-core');

    At least with the other plug-ins I’m running with the Smart Slideshow Widget, the above edit fixed the Widget Page, Media Library, and Add Media issues.

    I think a better way is to use the jQuery scripts that comes with WordPress, so you don’t have to worry (as much) about jQuery version mismatches/mis-syncs.

    Replace:

    (around line: 413)
    wp_enqueue_script('jQuery-UI-Effects', WP_PLUGIN_URL . '/smart-slideshow-widget/js/jquery-ui.min.js');

    with

    wp_enqueue_script('jquery-effects-core');

    At least with the other plug-ins I’m running with the Smart Slideshow Widget, the above edit fixed the Widget Page, Media Library, and Add Media issues.

    Issue is that smart-slideshow-widget.php calls for an outdated jQuery-ui script, which conflicts with changes made in WP 3.5. The plug-in should instead use the jQuery scripts that are included with WordPress.

    So replace

    (around line: 413)
    wp_enqueue_script('jQuery-UI-Effects', WP_PLUGIN_URL . '/smart-slideshow-widget/js/jquery-ui.min.js');

    with

    wp_enqueue_script('jquery-effects-core');

    At least with the other plug-ins I’m running with the Smart Slideshow Widget, the above edit fixed the Widget Page, Media Library, and Add Media issues.

    I think all of the jquery-effects scripts are dependent on jquery-effects-core, so you should only have to call that.

    So replace

    wp_enqueue_script('jQuery-UI-Effects', WP_PLUGIN_URL . '/smart-slideshow-widget/js/jquery-ui.min.js');

    with

    wp_enqueue_script('jquery-effects-core');

    At least with the other plug-ins I’m running Smart Slideshow Widget, the above edit fixed the Widget Page, Media Library, and Add Media issues.

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