David Kaye

Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • in reply to: Photo View Time Details #954161
    David Kaye
    Participant

    Actually 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;
    }

    in reply to: Photo View Time Details #954160
    David Kaye
    Participant

    Solved… changed

    $settings = array(
    ‘show_end_time’ => true,
    ‘time’ => true,
    );

    to:

    $settings = array(
    ‘show_end_time’ => true,
    ‘time’ => false,
    );

    in reply to: Photo View Time Details #954142
    David Kaye
    Participant

    Looks 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?

    in reply to: Google Maps UI #936360
    David Kaye
    Participant

    Perfect, thanks Geoff!

    in reply to: Google Maps UI #936344
    David Kaye
    Participant

    Thanks 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?

    in reply to: Single Venue Page #925805
    David Kaye
    Participant

    Thanks, Brian! I figured out how to do all this… just took over the list view format and re-styled everything.

    in reply to: Link to Past Events page in Main Navigation #924832
    David Kaye
    Participant

    Thanks Brian!

    in reply to: Link to Past Events page in Main Navigation #924065
    David Kaye
    Participant

    Ah, 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!

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