• In calendar grid view, some are experiencing a failure of the date picker. Please give links and descriptions if this is you.

    This might cause only the current month to be viewed. Switching to other months will do nothing.

    Justin

Viewing 15 replies - 1 through 15 (of 28 total)
  • Yes,
    I′m having this… take a look: https://thiagoabdalla.com/?cat=24&eventDisplay=month

    list, single and grid I could set up with my theme. List and Single.php are working perfectly!

    The calendar grid displays only current month. And just the “today” events.
    This was hapening before changing the style…

    Thanks!

    Thread Starter justinendler

    (@justinendler)

    If your date picker on grid view is broken in a way where it does nothing at all, this is the right place. It’s a javascript error.

    I have no solid conclusion as to why the error occurs and I can’t reproduce the error, but you can try rewriting some javascript as follows. I’d like to get feedback on whether or not this fixes the bug, since both the old way and this new way work for me.

    In the-events-calendar/views/datepicker.php, in the script tags,

    change:

    jQuery(document).ready(function(){
    		jQuery('.<?php echo $prefix; ?>events-dropdown').change(function( ) {
    			monthSelect = jQuery('#<?php echo $prefix; ?>events-month');
    			yearSelect = jQuery('#<?php echo $prefix; ?>events-year');
    			jumpMonth = monthSelect.attr("options")[monthSelect.attr("selectedIndex")].value;
    			jumpMonth = monthSelect.find('option')[monthSelect.attr("selectedIndex")].value;
    			jumpYear = yearSelect.attr("options")[yearSelect.attr("selectedIndex")].value;
    			location.href = '<?php echo $link; ?>' + jumpYear + '-' + jumpMonth;
    		});
    	});

    to:

    jQuery(document).ready(function() {
    		jQuery('.<?php echo $prefix; ?>events-dropdown').change(function() {
    			location.href = '<?php echo $link; ?>' + jQuery('#<?php echo $prefix; ?>events-year').val() + '-' + jQuery('#<?php echo $prefix; ?>events-month').val();
    		});
    	});

    @musicab
    Visiting your site, that’s some pretty weird behavior. Your date picker seems to be working properly, so I think your issue has more to do with the multiple-loop problem here:
    https://www.ads-software.com/support/topic/354580/page/2

    That’s a tougher problem, but I posted a temporary solution in that thread.

    Justin

    Hi Justin!

    that’s it! thank you so much. did exactly what you proposed: changed the lines in the datepicker.php and IT WORKS!

    now i can change month in the calendar grid, and everythin else is working, too.

    you’re great!

    Kai
    https://www.rachel-media.de/wordpress/category/events/month

    Thread Starter justinendler

    (@justinendler)

    Hi Kai,

    Great to hear that was it. We’ll test a little more and then include that fix in upcoming releases.

    Justin

    It doesn′t work for me… and then I tried the mutiple-loop, but, as a musician, I was not able to understand that!
    Thanks a lot for the support!!!
    Thiago

    Didn’t work for me either. Still the same problem.

    https://ykonline.ca/category/events/month/

    Thread Starter justinendler

    (@justinendler)

    Do you have another link to an example of the bug? That link leads to a 404 page.

    Tried the above fix… no luck. All other functions work fine

    https://ontrackconsulting.org/category/events/month/

    I am also experiencing a failure of the date-picker. I’ve tried the javascript fix provided above to no effect. I also made sure that I was using the appropriate permalinks format. Still nothing.

    Here is my events page: https://seniorconnection.illuminage.com/category/events/month

    I’ve noticed that a few of the last posters(freshmint, thebushman) now have the issue resolved on their sites. Could any of you post the solution that finally worked?

    UPDATE: This seems to be a Chrome bug, not an issue with the events calendar itself. My page works fine in FF, IE, etc. Anyone else experiencing this in Chrome?

    Thinking perhaps it’s a jQuery issue with Chrome now, which of course still affects the plug-in…

    I am having the same problem.
    I can not change months.
    I also can not change to list view by clicking the list button.
    As far as the current month calendar view posts etc works fine.
    page here
    https://gasolicious.com/test/category/events/

    Ajax Calendar was installed – deleted it, no change

    my active plugins are – Akismet – Formidable – Page Links to – WordPress Beta-Tester – WP-cycle

    Inactive plugins – PixoPoint menu plugin – Portfolio slideshow.

    Supposed to demo how clever I am with this on Tuesday ;-(

    Some more info,
    the list view works is set as default, you just can not change views with the buttons on the page.
    Also my sidebar (which is really a footer as its at the bottom) is gone on the calendar page.
    I am happy to give you access to my testing wordpress install. Where should I send a login and password?

    I solved this by simply removing the plugin from my sidebar – it’s a part of the multiple loop issue.

    Not having the sidebar plugin is a pain – but inconsequential to having the calendar actually work

    I had all of the problems before adding the widget to my sidebar, I removed it without change
    Thanks for replying which problem did it solve godkid?

    lets list them

    1. can not change the month
    2. buttons do not work to change between list view and calendar view
    3. sidebar/footer disappears (it is my sidebar.php even though it’s at the bottom)
    4. calendar widget appears on the widget page but I gather from the forum does not actually exist

    Number 1 is obviously a really big deal
    I have made the code change suggested above
    As I said I am willing to give my test login to the developers/justinendler

    it solved issue number 1 by your list.

Viewing 15 replies - 1 through 15 (of 28 total)
  • The topic ‘[Plugin: The Events Calendar] Date picker failure’ is closed to new replies.