Hi Barry,
actually, it isn’t hard to do 😉
I used the following code in my functions.php:
// Setup additional column :
add_filter(‘manage_edit-tribe_events_columns’, ‘add_new_events_columns’);
function add_new_events_columns($columns) {
if (!isset($columns[‘note’]))
$columns[‘column_name’] = “Column Name”;
return $columns;
}
// Fill column with data:
add_action( ‘manage_tribe_events_posts_custom_column’, ‘fill_new_events_column’, 10, 2);
function fill_new_events_column($column_name, $post_id)
{
switch($column_name)
{
case ‘column_name’:
// Logic to display post ‘Beschreibung’ field information here.
$column = // assign your value here, I pulled information from a custom field
if ($column) echo $column;
break;
default:
break;
}
}
Regards
Achim