From 4240c8d9954b25efb85b2ee4522dd843c17f71de Mon Sep 17 00:00:00 2001 From: Paul Kevan <2290623+pkevan@users.noreply.github.com> Date: Tue, 8 Oct 2024 14:06:07 +0100 Subject: [PATCH] Update camptix.php (#1387) Remove search link now there is a ticket filter. --- public_html/wp-content/plugins/camptix/camptix.php | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/public_html/wp-content/plugins/camptix/camptix.php b/public_html/wp-content/plugins/camptix/camptix.php index ee2a7a2b6..36687f256 100644 --- a/public_html/wp-content/plugins/camptix/camptix.php +++ b/public_html/wp-content/plugins/camptix/camptix.php @@ -691,15 +691,7 @@ function manage_columns_attendee_action( $column, $post_id ) { $ticket_id = intval( get_post_meta( $post_id, 'tix_ticket_id', true ) ); $ticket = get_post( $ticket_id ); if ( $ticket ) { - $attendees_url = get_admin_url( 0, '/edit.php?post_type=tix_attendee' ); - $attendees_url = add_query_arg( 's', 'tix_ticket_id:' . intval( $ticket->ID ), $attendees_url ); - - // Don't drop the post_status query variable. - if ( get_query_var('post_status') ) { - $attendees_url = add_query_arg( 'post_status', get_query_var('post_status'), $attendees_url ); - } - - printf( '%s', esc_url( $attendees_url ), esc_html( $ticket->post_title ) ); + echo esc_html( $ticket->post_title ); } break; case 'tix_email':