Rob Vander Giessen-Reitsma

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Recurring events all giving 404 errors #1321408

    Okay. Dug a little deeper into the support archives and found a solution: I reset my permalink settings and everything seems to be in order again. Thanks!

    in reply to: Recurring events display #1223155

    I’ve figured out how to resolve my issues on the homepage, which was the simpler of the two issues. But I still need the code to list all instances of a recurring event (ex. – January 22 @ 12:00pm, January 26 @ 3:00pm, etc.). Effectively, I need to overwrite or replace this function:

    <?php echo tribe_get_recurrence_text( get_the_ID() ); ?>

    in reply to: Recurring events display #1223121

    Okay, so for the single event page, it appears that this is the relevant code that displays the recurring event data:

    		<?php if ( function_exists( 'tribe_is_recurring_event' ) && function_exists( 'tribe_get_recurrence_text' ) && tribe_is_recurring_event( get_the_ID() ) ) : ?>
    
    		<tr>
    			<th> <?php _e( 'Recurring:', 'tokopress' ) ?> </th>
    			<td>
    				<?php echo tribe_get_recurrence_text( get_the_ID() ); ?>
    				<?php if ( function_exists( 'tribe_all_occurences_link' ) ) : ?>
    					<?php printf( '<br/><a href="%s">%s</a>', esc_url( tribe_all_occurences_link( get_the_ID(), false ) ), __( '(See All)', 'tokopress' ) ); ?>
    				<?php endif ?>
    			</td>
    		</tr>
    		<?php endif ?>

    So, my question is this: how would I edit this to list the date and time for all instances (instead of describing the recurrence as is happening now)? Any ideas?

Viewing 3 posts - 1 through 3 (of 3 total)