• Thought I posted this before, but I don’t se it so…I’m having a problem with 1.6.5 in which multi-day events are only appearing on the first day in the list view. Here’s the site:

    https://designweekla.org

    …and the content div that’s populating the events:

    <div id="content">
    <?php query_posts('category_name=events&eventDisplay=upcoming'); ?>
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <li class="event">
    <?php if ( is_new_event_day() ) : ?><h4 class="event-day"><?php echo the_event_start_date( null, false ); ?></h4><?php endif; ?>
    <div class="event-content">
    <?php the_title('<h2 class="event-title">', '</h2>'); ?>

    <?php the_excerpt() ?>
    </div>

    <?php endwhile; else: ?>
    <p>No Events</p>
    <?php endif; ?>
    </div>

    I’m guessing our previous dev modified something when he archived the 2010 events, but I have no idea what it might be, he’s not available and I am brand new to PHP. Anyone have any idea where I might start looking? I thought transitioning to the newly released 2.0 might fix it, but it looks like that’s going to be a larger project than I anticipated so for the time being I’m stuck with 1.6.5.

    Thanks!

    https://www.ads-software.com/extend/plugins/the-events-calendar/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: The Events Calendar] Multi-day events not repeating’ is closed to new replies.