Skip to content

Commit

Permalink
Adjust meetup column output (#1378)
Browse files Browse the repository at this point in the history
Remove email address from column output
  • Loading branch information
pkevan authored Sep 25, 2024
1 parent ceba226 commit 423e619
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public function column_data( $column, $post_id ) {

switch ( $column ) {
case 'organizer':
echo esc_html( get_post_meta( $post_id, 'Organizer Name', true ) . '<' . get_post_meta( $post_id, 'Email', true ) . '>' );
echo esc_html( get_post_meta( $post_id, 'Organizer Name', true ) );
break;
case 'meetup.com_url':
$this->print_clickable_link( get_post_meta( $post_id, 'Meetup URL', true ) );
Expand Down

0 comments on commit 423e619

Please sign in to comment.