Hi Anil,
You can override template event-dashboard.php theme side.For overriding template please check https://www.wp-eventmanager.com/documentation/template-files-override/
If you want to follow action and filter which is proper way to do.
Add below code inside you themes function file.
You need to add or unset column details.
add_filter( 'event_manager_event_dashboard_columns', 'add_remove_column' );
function add_remove_column( $columns ) {
//to unset column
unset( $columns['event_title'] );
unset( $columns['event_location'] );
unset( $columns['event_start_date'] );
//to set new column
$columns['my_custom_column']= __( 'Custom Title', 'wp-event-manager' );
return $columns;
}
//show value in column
/*
* to show each column value you need to add multiple add action according to your column name
* event_manager_event_dashboard_column_ + your column name
* in this function i have used
* event_manager_event_dashboard_column_ + my_custom_column
* you need to set dynamic hook for each column value
*/
add_action( 'event_manager_event_dashboard_column_my_custom_column', 'custom_column_value', );
function custom_column_value($event)
{
echo 'My custom column value goes here';
}
Thank you