Date column in Events screen

Home Forums Calendar Products Events Calendar PRO Date column in Events screen

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #21392
    Paul
    Participant

    Is it possible to add the date posted column back to the event overview screen of the dashboard?

    #21421
    Jonah
    Participant

    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

    #21440
    Paul
    Participant

    Hi Jonah,
    That works perfectly thanks.

    Paul

    #21465
    Jonah
    Participant

    Awesome! Glad to hear Paul. Let us know if there’s anything else we can help with.

    Cheers,
    Jonah

    #977245
    Support Droid
    Keymaster

    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.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Date column in Events screen’ is closed to new replies.