Date column in Events screen Post date Home › Forums › Calendar Products › Events Calendar PRO › Date column in Events screen This topic has 4 replies, 3 voices, and was last updated 10 years, 9 months ago by Support Droid. Viewing 5 posts - 1 through 5 (of 5 total) Author Posts July 2, 2012 at 6:00 am #21392 PaulParticipant Is it possible to add the date posted column back to the event overview screen of the dashboard? July 2, 2012 at 4:53 pm #21421 JonahParticipant Hi Paul, Try adding this to your theme’s functions.php file: add_filter( 'manage_edit-tribe_events_columns', 'my_columns_filter', 10, 1 ); function my_columns_filter( $columns ) { $column_date = array( 'date' => 'Date' ); $columns = array_slice( $columns, 0, 2, true ) + $column_date + array_slice( $columns, 2, NULL, true ); return $columns; } That should do it! – Jonah July 3, 2012 at 1:24 am #21440 PaulParticipant Hi Jonah, That works perfectly thanks. Paul July 3, 2012 at 11:17 am #21465 JonahParticipant Awesome! Glad to hear Paul. Let us know if there’s anything else we can help with. Cheers, Jonah July 7, 2015 at 6:25 am #977245 Support DroidKeymaster 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. Author Posts Viewing 5 posts - 1 through 5 (of 5 total) The topic ‘Date column in Events screen’ is closed to new replies. → Please verify your API key is correctly entered on the settings