boybot
Forum Replies Created
-
Forum: Plugins
In reply to: [Smart Slideshow Widget (by obikui)] Not Compatible with WordPress 3.5?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.
Forum: Plugins
In reply to: [Smart Slideshow Widget (by obikui)] Smart Slideshow widget brokenI 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.
Forum: Plugins
In reply to: [Smart Slideshow Widget (by obikui)] Broken pretty much all js in WP3.5Issue 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.
Forum: Plugins
In reply to: [Smart Slideshow Widget (by obikui)] jquery error with wordpress 3.5I 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.