Advertisement
eventsmanager

sample code for em_booking_save filter

Jul 5th, 2024
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <?php
  2.  
  3. function em_sample_snippet( $result, $EM_Booking ){
  4.  
  5. $bookingname = $EM_Booking->booking_meta['registration']['field_id']; //replace this with the field ID you used in your Events > Forms Editor
  6.  
  7. //add your Thrive Apprentice code here passing the $bookingname or other info you need.
  8.  
  9.  
  10.  
  11. return $result;
  12. }
  13. add_filter('em_booking_save', 'em_sample_snippet', 100, 2);
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement