Forum Replies Created
-
AuthorPosts
-
David Kaye
ParticipantActually found a good solution and put this in the functions.php file instead:
add_filter( ‘tribe_events_event_schedule_details_formatting’, ‘change_schedule_format’ );
function change_schedule_format( array $format ) {
$format[‘time’] = false;
return $format;
}David Kaye
ParticipantSolved… changed
$settings = array(
‘show_end_time’ => true,
‘time’ => true,
);to:
$settings = array(
‘show_end_time’ => true,
‘time’ => false,
);David Kaye
ParticipantLooks like it’s in general.php under the events calendar plugin directory…
$schedule = ‘<span class=”date-start dtstart”>’;
$format = ”;
$date_without_year_format = tribe_get_date_format();
$date_with_year_format = tribe_get_date_format( true );
$time_format = get_option( ‘time_format’ );
$datetime_separator = tribe_get_option( ‘dateTimeSeparator’, ‘ @ ‘ );
$time_range_separator = tribe_get_option( ‘timeRangeSeparator’, ‘ – ‘ );
$microformatStartFormat = tribe_get_start_date( $event, false, ‘Y-m-dTh:i’ );
$microformatEndFormat = tribe_get_end_date( $event, false, ‘Y-m-dTh:i’ );$settings = array(
‘show_end_time’ => true,
‘time’ => true,
);Is there a way to write a simple call for the functions.php file to override for the photo view?
David Kaye
ParticipantPerfect, thanks Geoff!
David Kaye
ParticipantThanks Geoff! I’ll look into the CSS… it sounds like one custom map disrupting another… do you know where the custom map CSS is located in The Events Calendar?
David Kaye
ParticipantThanks, Brian! I figured out how to do all this… just took over the list view format and re-styled everything.
David Kaye
ParticipantThanks Brian!
David Kaye
ParticipantAh, of course! Thanks for the help, Brian!
I’m wondering if there’s a way to edit the permalink for Past Events… to say domain.com/events/past. Any ideas on that one?
Thanks!
-
AuthorPosts
