Title: Plugin Broken
Last modified: August 21, 2016

---

# Plugin Broken

 *  [Nick Meagher](https://wordpress.org/support/users/nmeagher23/)
 * (@nmeagher23)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/plugin-broken-21/)
 * I installed the plugin and got it working the way I wanted it to but then quickly
   realized that the plugin (jQuery) broke the rest of my site. I dug a little more
   into it and found the problem.
 * If your looking for a quick fix like I was make these changes:
 * 1. In the plugin folder open wp-coming-soon.php
    2. Go to line 67 3. Delete register_scripts_and_styles
   function 4. Replace that function with this:
 * function register_scripts_and_styles() {
    $lang = get_option(‘wp_coming_soon_language’);
 *  if ( !is_admin() ) {
 *  wp_register_script( ‘wp_coming_soon-script’, plugins_url(‘/js/jquery.countdown.
   js’, __FILE__) , array(‘jquery’) );
    wp_register_style( ‘wp_coming_soon-style’,
   plugins_url(‘/css/countdown-style.css’, __FILE__) ); wp_enqueue_script( ‘wp_coming_soon-
   script’ ); wp_enqueue_style( ‘wp_coming_soon-style’ );
 *  if( !empty($lang) && isset($lang) ){
    wp_register_script( ‘wp_coming_soon-script-‘.
   $lang, plugins_url(‘/js/jquery.countdown-‘. $lang .’.js’, __FILE__) , array(‘
   jquery’) ); wp_enqueue_script( ‘wp_coming_soon-script-‘. $lang ); }
 *  } // end if/else
    } // end register_scripts_and_styles
 * 5. On line 88 add $.noConflict(); above jQuery( function($){.
 * 6. That fixed it for me in version 3.5.1!
 * I hope the developer fixes it soon!
 * [http://wordpress.org/extend/plugins/wp-coming-soon/](http://wordpress.org/extend/plugins/wp-coming-soon/)

The topic ‘Plugin Broken’ is closed to new replies.

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

 * 0 replies
 * 1 participant
 * Last reply from: [Nick Meagher](https://wordpress.org/support/users/nmeagher23/)
 * Last activity: [13 years, 1 month ago](https://wordpress.org/support/topic/plugin-broken-21/)
 * Status: not resolved