Seems like this custom function is responsable. I commented those line and CSV export works fine.
Did the latests release change any name of functions ?
add_filter( 'tribe_events_tickets_attendees_table_column', 'populate_my_custom_attendee_column', 10, 3 );
function populate_my_custom_attendee_column( $existing, $item, $column ) {
if ( 'custom_id' !== $column ) return $existing;
$order = new WC_Order( $item['order_id'] );
$payment_method_title = $order->payment_method_title;
return esc_html( $payment_method_title );
}
Regards,
Frank
-
This reply was modified 8 years, 10 months ago by
Frank.
-
This reply was modified 8 years, 10 months ago by
Frank.