Advertisement
eventsmanager

Remove HTML tags on booking summary fields

Sep 5th, 2024
339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2.  
  3. function my_em_custom_booking_form_cols_tickets($value, $col, $EM_Booking, $EM_Bookings_Table, $csv){
  4. if( $col != 'actions' && $col != 'event_name' && $col != 'user_email' ){
  5. $value = wp_strip_all_tags( $value );
  6. }
  7. return $value;
  8. }
  9. add_filter('em_bookings_table_rows_col','my_em_custom_booking_form_cols_tickets', 100, 5);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement