Advertisement
eventsmanager

custom booking price placeholder

Dec 10th, 2017
1,487
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. add_filter('em_booking_output_placeholder','my_em_custom_booking_price',1,3);
  2. function my_em_custom_booking_price($replace, $EM_Booking, $result){
  3. switch( $result ){
  4. case '#_CUSTOMBOOKINGPRICE':
  5. $replace = $EM_Booking->get_price(false);
  6. break;
  7. }
  8. return $replace;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement