Achim

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Display additional info in admin view #25783
    Achim
    Member

    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

    in reply to: Is it possible to duplicate events ? #25506
    Achim
    Member

    Hi 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
    Achim

    in reply to: Display additional info in admin view #25381
    Achim
    Member

    I forgot to say that the info I want do display is stored in wp custom fields

    Regards

    Achim

    in reply to: WooCommerce integration?? #22986
    Achim
    Member

    I would like to add, that a woocommerce integration would be a perfect addition to events calendar !

    Regards
    Achim

Viewing 4 posts - 1 through 4 (of 4 total)