Viewing 1 replies (of 1 total)
  • Plugin Author roundupwp

    (@roundupwp)

    Hey misstest,

    There isn’t a feature that allows you to approve or reject registration. However, you could simply delete the registrations you want to reject and then send an approval email to the ones you accept. The free version doesn’t have a feature to send the email manually but you could use your own email client to do this.

    For your user role questions, you could use a PHP hook described in this FAQ:

    https://roundupwp.com/codex/filter-rtec_event_meta/

    Here is a non-working example (I made up the permission) that is better for your specific use:

    function ru_filter_event_meta( $event_meta ) {
    
    	if ( ! current_user_can( 'attend_events' ) ) {
    		$event_meta['registrations_disabled'] = true;
    	}
    
    	return $event_meta;
    }
    add_filter( 'rtec_event_meta', 'ru_filter_event_meta' );

    Hopefully this helps!

    – Craig

Viewing 1 replies (of 1 total)
  • The topic ‘Aprobe and limit’ is closed to new replies.