Forum Replies Created
-
AuthorPosts
-
Ryan Norfolk
ParticipantHi Courtney
Thanks for getting back to me.I am not using a plugin for the shortcode.
I am using the shotcode from here
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?
Ryan Norfolk
ParticipantThanks 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.Ryan Norfolk
ParticipantI’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?
Ryan Norfolk
ParticipantThanks Cliff.
Yes, the attendee list has got everything in there now

We’ll give the Export a try and update this post when we’re doneRyan Norfolk
Participant6 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
Ryan Norfolk
ParticipantOk, 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 );
} -
AuthorPosts
