Ryan Norfolk

Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • in reply to: ShortCode List Events Alphabetically #1393888
    Ryan Norfolk
    Participant

    Hi Courtney
    Thanks for getting back to me.

    I am not using a plugin for the shortcode.

    I am using the shotcode from here

    The Events Calendar Shortcode

    I don’t need to send you system info as I do not have a problem.

    My question is, using the Event Calendar shortcode (e.g. [ecs-list-events cat=’festival’ limit=’8′]) can we sort alphabetically?

    in reply to: Transfer order to different event #1341651
    Ryan Norfolk
    Participant

    Thanks for getting back to me Shelby

    The link you’ve sent is where I got the information about deleting an attendee. I followed the instructions… Event>Attendees> ticking them, selecting Delete and clicking apply.
    … But when I click apply they are not deleted.

    in reply to: Transfer order to different event #1340180
    Ryan Norfolk
    Participant

    I’ve cancelled (and then moved to bin) the order in Woo, but I can’t delete them from the Event. I’m Event>Attendees> ticking them, selecting Delete and clicking apply.

    What am I doing wrong, how do I remove them from the wrong event?

    in reply to: Populating custom fields in attendee list #1023219
    Ryan Norfolk
    Participant

    Thanks Cliff.
    Yes, the attendee list has got everything in there now
    Attendee list with custom columns
    We’ll give the Export a try and update this post when we’re done

    in reply to: Populating custom fields in attendee list #1023153
    Ryan Norfolk
    Participant

    6 custom columns added and all showing data in the Attendee List. Now got to work out how to add them to the Attendee Export.

    Again, not asking for support, but if you could point me in the right direction it would be appreciated

    in reply to: Populating custom fields in attendee list #1022064
    Ryan Norfolk
    Participant

    Ok, we’ve got that working. Just got to work out how to add more than 1 custom column now. Any help, or link would be really appreciated.

    add_filter( ‘manage_tribe_events_page_tickets-attendees_columns’, ‘add_my_custom_attendee_column’, 20 );
    add_filter( ‘tribe_events_tickets_attendees_table_column’, ‘populate_my_custom_attendee_column’, 10, 3 );

    function add_my_custom_attendee_column( $columns ) {
    $columns[‘custom_id’] = ‘Pupils Full Name’;
    return $columns;
    }

    function populate_my_custom_attendee_column( $existing, $item, $column ) {
    if ( ‘custom_id’ !== $column ) return $existing;
    $order = new WC_Order( $item[‘order_id’] );
    $address = get_post_meta( $order->id, ‘Pupils Full Name’, true );
    return esc_html( $address );
    }

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