Okay
  Public Ticket #2586922
RSVP
Closed

Comments

  •  2
    david started the conversation

    good morning :=) 

    is it possible to limit the RSVP to only logged in users?

    David

  •  779
    Zhivko replied

    Open your theme or child-theme functions.php file and add following filter:

    add_filter('stec_event_get_front_data', function($data) {
        
        if (!is_user_logged_in()) {
            $data['rsvp'] = 0;
        }
        
        return $data;
        
    });



    Stachethemes Developer