Advertisement
eventsmanager

Custom #_BOOKINGPHONE Placeholder

Dec 12th, 2023
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. add_filter('em_booking_output_placeholder','my_em_custom_booking_phone',100,3);
  2. function my_em_custom_booking_phone($replace, $EM_Booking, $result){
  3. switch( $result ){
  4. case '#_BOOKINGPHONE':
  5. $phone = $EM_Booking->get_person()->phone;
  6. $replace = str_replace('+','',$phone);
  7. break;
  8. }
  9. return $replace;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement