List View Next/Previous not working properly

Home Forums Calendar Products Events Calendar PRO List View Next/Previous not working properly

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #87936
    adam
    Participant

    Having issues with next and previous events in an installation, It appears to be contained to lists by category (which are pretty much all I’m using)

    http://nlcgroups.com/events/category/somersworth/

    When I click next or previous, I get this error: No matching events listed under Fellowship. Check out upcoming events for this category or view the full calendar.

    #88875
    Brook
    Participant

    Howdyatracksler,

    It looks like one of your customizations to the theme, or perhaps a plugin, is causing the input tribe-bar-date to submit its placeholder value “Date”. Since “Date” is not a valid date, like say “12-31-2013” is, our plugin is returning an empty result. You can observe this here, when we click next the following URL appears:

    http://nlcgroups.com/events/category/somersworth/upcoming/?action=tribe_list&tribe_paged=2&tribe-bar-date=Date

    If we remove tribe-bar-date, it behaves as expected:

    http://nlcgroups.com/events/category/somersworth/upcoming/?action=tribe_list&tribe_paged=2

    A super easy fix would be to just remove Date from the place holder text. If you are interested in diving in and trying to find out what the conflict is, I would first take a look at any theme overrides you may have. Try disabling them and seeing if that fixes the problem. If not, try disabling your theme. If that does not fix it, your plugins. Eventually disabling one of these should temporarily fix the problem. Once you have isolated which of those is causing a conflict we can dive into this a bit further.

    Please let me know if that helps you to isolate the issue. I would be glad to help you further if I can. Thanks!

    – Brook

    #89196
    adam
    Participant

    OK, it appears that I had added some custom event meta calls to the functions.php

    add_action( ‘wp_head’, ‘custom_event_meta’ );
    function custom_event_meta(){

    // customize just the label
    tribe_set_meta_label( ‘tribe_event_tag’, __( ‘Tags:’ ) );

    // reregister meta (this will merge settings into the original registered settings)
    tribe_register_meta( ‘tribe_event_website’, array(
    ‘classes’ => array(‘meta_before’=> array(‘url’)),
    ‘label’ => __( ‘More Info:’ ),
    ‘register_overwrite’ => true, // set to TRUE in order to overwrite the core registration
    ‘filter_callback’ => array(‘Tribe_Register_Meta’, ‘event_website’)
    ) );

    }
    I removed this, and things seem to be working correctly.

    #89931
    Brook
    Participant

    I am glad to hear it. Thanks for the update!

    #201218
    Seth
    Participant

    I think I have a similar issue but I haven’t been able to resolve it.

    The next/prev links don’t seem to work with the ajax load and displays a “No matching events” error even though there are events. A quick refresh of the page ends up displaying the events properly.

    Here’s an example page – http://www.dmu.edu/calendar/category/continuing-medical-education/ (hit next)

    Some additional details: Next/Prev buttons don’t seem to work at all on IE. Next/Prev buttons DO work when logged in as Admin.

    #211598
    Brook
    Participant

    Howdy Seth!

    I apologize for my belated response. As our forum rules indicate we ask each customer to open a new topic when they have an issue, instead of jumping in on someone elses. One of the main reasons behind this is that our forum ticketing software alerts us if the original poster responded, but it does not always if someone else jumps in. Thus, you get a delayed response. 🙁

    I am seeing that problem are your site. My primary suspect would be that this is a conflict issue, either with your theme or plugin. To isolate this you can run through the following debugging steps:

    Try temporarily activating the default Twenty Thirteen theme, and seeing if the issue persists.

    If disabling the theme fixes it, we have narrowed the issue down to a theme conflict. Do you have any theme overrides for the Events Calendar? If so could you try disabling them by renaming your [themename]/tribe-events/ folder to ‘tribe-events-bak’. Did that fix it?

    If the issue persists in the default Twenty Thirteen theme, then we have a different set of debugging steps. Please keep the Twenty Thirteen theme enabled, and also disable any plugins other than the ones from Modern Tribe to see if that fixes it. If it does, please try reenabling the plugins one at a time until the issue resurfaces. When it does resurface, can you let me know which plugin caused that to happen?

    Since this topic is resolved it is scheduled to be closed out. Please open a new Seth and outline the problem, along with the results of those above debugging steps. Posting the results of those steps will go along way towards helping you find a quick resolution. Cheers!

    – Brook

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘List View Next/Previous not working properly’ is closed to new replies.