I want to put my upcoming events inside a table, I edited events-advanced-list-load-widget.php. I put my code like this:
ID, $start, ‘n/j/y’ );
if($event->AllDay && $start) {
echo ‘ (‘.__(‘All Day’,’tribe-events-calendar-pro’).’)’;
} else {
if ( $end && $event->EndDate != ”) {
echo ” . __(‘Ends’, ‘tribe-events-calendar-pro’) . ‘ ‘;
echo tribe_get_end_date($post->ID, ‘j/n/y’);
}
}
?>
But this makes this in html:
So its looping through the element as well.
Where can I put this bit of code so that just the and ‘s are looped. Thanks