Remove Start time and End time everywere

Home Forums Calendar Products Events Calendar PRO Remove Start time and End time everywere

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1091966
    gpcongress
    Participant

    I need to hide Start time and End time everywere also in widget. Thank you

    #1091991
    George
    Participant

    Hi there,

    This will unfortunately require custom coding, which we can’t help much with, unfortunately. Read this article to learn more → https://theeventscalendar.com/knowledgebase/what-support-is-provided-for-license-holders/

    Despite that policy, I’m happy to help try and write the CSS to hide this.

    Can you clarify if you want the Day Names to persist, though?

    So, for example, if you have this on your events:


    March 15 @ 7pm–8pm

    Do you want to keep the March 15 and just get rid of the rest? Or do you want the March 15 to be gone, too?

    Thanks!
    George

    #1092015
    gpcongress
    Participant

    I need the date (ex: March 15) but without the time

    #1092016
    gpcongress
    Participant

    Where is the date/time function? I can do someting by myself?

    #1092711
    George
    Participant

    Hey @gpcongress,

    If you copy and paste the following code into your theme’s functions.php file, the dates should only display the days as you described; no times will be shown:


    add_filter( 'tribe_events_event_schedule_details_formatting', 'tribe_events_display_time' );

    function tribe_events_display_time( $settings ) {
    $settings['time'] = false;
    return $settings;
    }

    Cheers!
    George

    #1098997
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Remove Start time and End time everywere’ is closed to new replies.