Okay
  Public Ticket #3047617
Remove end time from Agenda view
Closed

Comments

  •  1
    Marcus started the conversation

    Hi! I would like to hide all the end times. Is there any general way for this, e.g. through php or css.

    Thanks in advance!

  •  783
    Zhivko replied

    You could force it via a hook in your theme or child-theme functions.php file:

    add_filter('stec_event_get_front_data', function($data) {
        $data['hide_end'] = 1;
        return $data;
    });



    Stachethemes Developer

  •  1
    Marcus replied

    Thank you, it worked perfectly!