Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * added #_MAXSPACESPERBOOKING to display Maximum Bookings Allowed Per Booking
- */
- add_filter('em_event_output_placeholder','my_em_maxspaces',1,3);
- function my_em_maxspaces($replace, $EM_Event, $result){
- if ( $result == '#_MAXSPACESPERBOOKING' ) {
- $replace = $EM_Event->event_rsvp_spaces;
- }
- return $replace;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement