Home / Admin / Combined Date – Time Format (Do something with the Local Start Time) | Display Eventbrite Events
Duplicate Snippet

Embed Snippet on Your Site

Combined Date – Time Format (Do something with the Local Start Time) | Display Eventbrite Events

The combined date / time format appears in several layouts and typically looks like 12/02/2019, 10:00 – 11:00. Using this filter, you can customize the Local Start Time.

filter: (‘wfea_eventbrite_event_start‘ , $start)

(Note this code snippet applies for "Display Eventbrite Events Plugin" available here: https://fullworksplugins.com/products/widget-for-eventbrite/ )

Code Preview
php
<?php
add_filter( 'wfea_eventbrite_event_start', function ( $start ) {
       // do you stuff  to update $start
	return $start;
}, 10, 1 );

Comments

Add a Comment