Comments 2david started the conversationOctober 31, 2020 at 10:03amgood morning :=) is it possible to limit the RSVP to only logged in users?David 969Zhivko repliedNovember 2, 2020 at 12:11pmOpen 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 Sign in to reply ...
good morning :=)
is it possible to limit the RSVP to only logged in users?
David
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