Skip to content

Instantly share code, notes, and snippets.

@jazbek
Created July 22, 2013 19:58
Show Gist options
  • Save jazbek/6057096 to your computer and use it in GitHub Desktop.
Save jazbek/6057096 to your computer and use it in GitHub Desktop.
Fix datepicker in midway theme
// Fix datepicker
add_action('tribe_events_form_metabox_the_date', 'tribe_fix_midway_datepicker');
function tribe_fix_midway_datepicker($html) {
echo ThemexInterface::renderOption(array('type' => 'date'));
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment