Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Franky

    (@liedekef)

    Example site and theme info please. I’m guessing there’s a javascript issue that prevents the correct info from being fetched. Please also check your browser console for javascript errors.

    Thread Starter vvvv

    (@vvvv)

    yep.
    Actually am getting just that!

    Error Console:

    Timestamp: 1/23/2013 6:53:10 AM
    Error: ReferenceError: eme_ajax is not defined
    Source File: http://rhodygarden.com/cms/wp-content/plugins/events-made-easy/js/client-clock.js?ver=3.5
    Line: 4

    Clicking in gives:
    // Don’t wait for DOM ready.
    var now = new Date();
    jQuery.post(
    eme_ajax.ajaxurl, {
    action: ‘client_clock_submit’,
    client_unixtime: Math.round(now.getTime() / 1000), // make seconds
    client_seconds: now.getSeconds(),
    client_minutes: now.getMinutes(),
    client_hours: now.getHours(),
    client_wday: now.getDay(),
    client_mday: now.getDate(),
    client_month: now.getMonth()+1, // make 1-12
    client_fullyear: now.getFullYear() },
    function(ret) {
    if (ret == ‘1’) {
    top.location.href = self.location.href;
    }
    }
    );

    Plugin Author Franky

    (@liedekef)

    I need to check this. For now, just disable the option to use the client clock in the EME admin settings page.

    Plugin Author Franky

    (@liedekef)

    If you’re willing to test (I’m not home yet): move in events-manager.php the line 41 (starting with “wp_localize_script”) just after line 52 (starting with “wp_enqueue_script”) and see if that resolves it if you leve the client clock option on in the EME settings.

    Thread Starter vvvv

    (@vvvv)

    Beautiful!!! Thank you! Yes, it worked. I left the client clock enabled and moved line 41 to after 52 and I now have a calendar that shows the correct month, day and year, and with the “today” cell indicated.

    Really is a flexible plugin and I will eventually figure out to to use all of these options – thanks so very much!!

    Thread Starter vvvv

    (@vvvv)

    Resolved!

    Plugin Author Franky

    (@liedekef)

    Thanks for letting me know! Changed in the code, and will of course be in the next version.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Full Calendar showing year 0 after upgrade’ is closed to new replies.