eventsmanager icon

Custom #_BOOKINGPHONE Placeholder

eventsmanager | PRO | 07/27/24 11:42:47 AM UTC (Edited) | 0 ⭐ | 597 👁️ | Never ⏰ | []
PHP |

350 B

|

None

|

0 👍

/

0 👎

<?php
add_filter('em_booking_output_placeholder','my_em_custom_booking_phone',100,3);
function my_em_custom_booking_phone($replace, $EM_Booking, $result){
    switch( $result ){
        case '#_BOOKINGPHONE':
            $phone = $EM_Booking->get_person()->phone;
            $replace = str_replace('+','',$phone);
            break;
    }
    return $replace;
}

Comments