Is there a Branch on Github? So we could test and issue-track on GitHub?
Best,
Rico
Bugfix:
/wp-content/plugins/gecka-submenu/widgets/Custom-menu.php
after Line 46 add
$instance['auto_title'] = (int) $new_instance['auto_title'];
after Line 69 add
$auto_title = isset( $instance['auto_title'] ) ? $instance['auto_title'] : 0;
Best,
Rico
You can solve that for the moment here:
if you’re using wordpress’ default single-template
copy views/single.php
to your local theme /wp-content/themes/{your-theme}/events/single.php and change Line 13
from
if(strtotime(tribe_get_end_date(get_the_ID(), false, 'Y-m-d G:i') . get_option('gmt_offset') ) <= time())
to
if(strtotime(tribe_get_end_date(get_the_ID(), false, 'Y-m-d G:i') + (get_option('gmt_offset') * 60) ) <= time())
if you’re using the ecp-buildin template copy that instead of the single.php
Best,
Rico
PS: Note the “.” that is changed into the “+”!