• Resolved EmanuelHut

    (@emanuelhut)


    Hello!

    I’m currently looking for a hook that’s called after someone has registered for a event.
    I looked in the documentation but couldn’t find it.

    The reason why is because we are showing all people that are going to the event but the cache is not getting empties, so we need to do that manually after someone registered.

Viewing 1 replies (of 1 total)
  • add_filter( 'em_booking_save', 'my_booking_save' );
    function my_booking_save( $result ) {
    //clear cache
    return $result;
    }
Viewing 1 replies (of 1 total)

The topic ‘Hook after registration for event’ is closed to new replies.