Forum Replies Created
-
AuthorPosts
-
Achim
MemberHi 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
Achim
MemberHi Jonah,
the recurring events option doesn’t work for me, because the events don’t have a recurring schedule, the dates are all individual and don’t follow a specific scheme. I will try the duplicate post plugin, seems to be the thing I was looking for.
Regards
AchimAchim
MemberI forgot to say that the info I want do display is stored in wp custom fields
Regards
Achim
Achim
MemberI would like to add, that a woocommerce integration would be a perfect addition to events calendar !
Regards
Achim -
AuthorPosts
