Viewing 15 replies - 1 through 15 (of 16 total)
  • @overmetal61
    Can you post your website url and I will let you know the problem?

    Thread Starter overmetal61

    (@overmetal61)

    Yani,

    Thanks for willing to help. The problem appears when using the ecclesia theme we purchased. When I apply the default theme it works. I am not sure where to begin troubleshooting. Any insight you can provide would be greatly appreciated.

    http://www.ctk2030somethings.org/wp/calendar/

    Thread Starter overmetal61

    (@overmetal61)

    So I tried another AJAX Calendar Plugin and it has different problem but also does not function. This leads me to believe the problem is with the theme AJAX support. This is a paid theme and we have done all some custom graphics work so I really can’t afford to abandon this theme.

    I am new to wordpress, but a software engineer so I can read code, but do not know where to begin. Yani, What are the requirements for a theme to support this plugin?

    I spent some time reading about JQuery and it says it is already available in WordPress. So I am not sure what my next action should be.

    Looking forward to your advice. Thanks

    Thread Starter overmetal61

    (@overmetal61)

    Yani,

    Do you have any idea on what in the theme would be leading to this problem? I REALLY want to get this fixed so I can use all in one event calendar, but don’t know where to start. Does this have to do with JQuery?

    All in One Event Calendar is by far, the best calendar I have run into… I would just really understand what I need to get it to work with my theme. Appreciate any insight you are willing to share. Thanks much!

    Kevin

    hi
    I have same problem…uum.
    http://jaqan.com/gessekai/calender

    Thread Starter overmetal61

    (@overmetal61)

    My site URL and wp URL are the same an plugin still does not work. Not sure how this fixed your problem.

    I keep coming across the spinning wheel in Firefox and Chrome. It works fine on Safari. The site URL and wp URL are the same. Any idea? The address is http://www.redcanary.ca/calendar

    @overmetal61 – could you show me the page with calendar that doesn’t work. I will tell you what the problem is

    @dlagman – your server returns 404 when calendar sends a request to admin-ajax.php. Could it be a server side error? Can you check your php error log for anything strange. You can also set WP_DEBUG to true in your wp-config.php file to see for errors.

    Thread Starter overmetal61

    (@overmetal61)

    @yani.illiev
    http://www.ctk2030somethings.org/wp/calendar/ I reactivated the plugin and you should see the spinning AJAX wheel, where the calendar never loads.

    @overmetal61
    Can you use jQuery from WordPress in your theme instead of loading one from google’s CDN?

    Thread Starter overmetal61

    (@overmetal61)

    @yani.iliev

    I am pretty new to wordpress and php, but have a software engineering background. Do you know of any documentation/manual that would explain the procedure? I am certainly open to trying.

    @overmetal61
    Actually, it may not be your theme that is changing the default jquery location.
    You will have to check the theme and/or your plugins for the source of the problem. I can try to look into the issue if you are willing to give me admin access for the next ~1 hour. You can email me credentials to yani at the-seed.ca

    Thread Starter overmetal61

    (@overmetal61)

    Yani – Thank You again!

    For the benefit of the community (the solution):
    The theme was the problem. It was registering JQuery using Google old API

    in functions/theme/init.php (lines 88-95 in Ecclesia)

    /**
    * Enqueue jQuery
    */
    add_action( ‘wp_enqueue_scripts’, ‘mw_theme_enqueue_scripts’ );
    function mw_theme_enqueue_scripts() {
    if( !is_admin()){
    wp_deregister_script(‘jquery’);
    wp_register_script(‘jquery’, (“http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js”), false, ‘1.5.1’, true);
    wp_enqueue_script(‘jquery’);
    }
    }

    The theme was registering the old JQuery API from Google API. This is not needed in the latest versions of WordPress because JQuery is included. So I effectivly removed this code from the theme and All-In-One Event Calendar is Functional.

    @overmetal61 and Yani, you guys rock! I’ve been beating my head against the wall for two weeks trying to find the error to the exact same issue. Thanks for finding the answer.

Viewing 15 replies - 1 through 15 (of 16 total)
  • The topic ‘[Plugin: All-in-One Event Calendar] AJAX Spinning Wheel, Never Loads… Just spins forever’ is closed to new replies.