Support

Home Forums Events Calendar Add-on Calendar disappeared

Calendar disappeared

Posted: November 28, 2012 at 10:34 pm


Megin Hughes

November 28, 2012 at 10:34 pm

Just noticed today that the calendar was suddenly not showing on http://www.ormaco.org.
Was working in the past. Tried deactivating a new plugin, adding/removing the [raw] tags and uploading the new fullcalendar.min.js file as mentioned in previous posts.

Any other suggestions?


Josh

  • Support Staff

November 29, 2012 at 12:15 am

Hi Megin,

I’d recommend updating the theme to use a newer version of jQuery:
screenshot of JavaScript error from that site

It’s likely that the theme has deregistered the copy of the jQuery library that is bundled with WordPress. You might be able to find some code in the theme functions file that looks like this:

function keep_jquery_on_an_old_version_and_break_plugins() {
  if (is_admin()) return;
  wp_deregister_script( 'jquery' );
  wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js');
  wp_enqueue_script( 'jquery' );
}

In which case, you could remove these two lines:

wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js');

which will allow the bundled copy to load instead.


Megin Hughes

November 30, 2012 at 6:03 pm

Seems to have worked like a charm… I love brilliant people like you who make my life so much easier 🙂

Thanks for the help!

The support post ‘Calendar disappeared’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso