Title: WordPress 4.2.4 breaks the Plugin
Last modified: August 30, 2016

---

# WordPress 4.2.4 breaks the Plugin

 *  [Snerf](https://wordpress.org/support/users/snerf/)
 * (@snerf)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/wordpress-424-breaks-the-plugin/)
 * After updating WP to 4.2.4 from 4.2.3 it breaks the plugin, as javascript is 
   shown in place of the shortcode on a page. And it is not all the javascript, 
   seems to be what is after the ‘filters’ section in building the $plupload_init
   array in the Init function in classes/PlUploader.php
 * In 4.2.3 everything worked fine.
 * [https://wordpress.org/plugins/wp-filebase/](https://wordpress.org/plugins/wp-filebase/)

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

 *  [DaveTheKnave](https://wordpress.org/support/users/davetheknave/)
 * (@davetheknave)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/wordpress-424-breaks-the-plugin/#post-6414430)
 * For what it’s worth…
 * WP Filebase Version 3.2.04 is working with WordPress Version 4.2.4.
 *  Thread Starter [Snerf](https://wordpress.org/support/users/snerf/)
 * (@snerf)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/wordpress-424-breaks-the-plugin/#post-6414448)
 * But not 3.2.12
 *  [DaveTheKnave](https://wordpress.org/support/users/davetheknave/)
 * (@davetheknave)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/wordpress-424-breaks-the-plugin/#post-6414483)
 * Yes young Snerf, you’ve sufficiently established that already.
 * And you’re welcome.
 *  [Wazomba](https://wordpress.org/support/users/wazomba/)
 * (@wazomba)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/wordpress-424-breaks-the-plugin/#post-6414748)
 * Hi, just to notice all that wp 4.3 also breaks the 3.1.01 plugin.
    Some JS features
   in my theme like tabs, sliding panels are also broken on pages using the filebase
   shortcodes
 * Somebody has a workaround ? maybe tericking JS ? I’m not an expert.
 *  [dsburdette](https://wordpress.org/support/users/dsburdette/)
 * (@dsburdette)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/wordpress-424-breaks-the-plugin/#post-6414769)
 * Posted this in another thread about table sorting issues I was having. Here’s
   what I added to that thread describing what fixed my problem:
 * I had a problem with my file data table not sorting via the column headers. I
   fixed the issue by loading an older version of jQuery. I’m running WP 4.3 and
   it was loading jQuery 1.11.3. I was getting a jQuery error in the console so 
   I added the following to my functions.php file where I am enqueueing scripts 
   to load up 1.11.2 and that fixed my issues. Hope this works for the rest of you.
   I even tried loading some 2.0 version and some of them worked too but I decided
   to stick with one version older than what 4.3 was loading.
 *     ```
       function my_scripts_method() {
       wp_deregister_script('jquery');
       wp_register_script('jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js', false, '1.11.2');
       }
       add_action('wp_enqueue_scripts', 'my_scripts_method', 99);
       ```
   

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

The topic ‘WordPress 4.2.4 breaks the Plugin’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-filebase_ffff6e.svg)
 * [WP-Filebase Download Manager](https://wordpress.org/plugins/wp-filebase/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-filebase/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-filebase/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-filebase/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-filebase/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-filebase/reviews/)

 * 5 replies
 * 4 participants
 * Last reply from: [dsburdette](https://wordpress.org/support/users/dsburdette/)
 * Last activity: [10 years, 8 months ago](https://wordpress.org/support/topic/wordpress-424-breaks-the-plugin/#post-6414769)
 * Status: not resolved