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.
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' );
}
Seems to have worked like a charm… I love brilliant people like you who make my life so much easier 🙂
Thanks for the help!
Viewing 2 reply threads
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.