Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter('em_booking_output_placeholder','my_em_get_payment_type',1,3);
- function my_em_get_payment_type($replacement, $EM_Booking, $result){
- if (is_object($EM_Booking)) {
- if ($result == '#_PAYMENTGATEWAY') {
- $replacement = $EM_Booking->booking_meta['gateway'];
- }
- }
- return $replacement;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement