Is it possible to change the plugin so that first of all, only registered users may sign up to events and second, they do not need to enter all kinds of information all the time?
I'm working on a site for a sports club, and when registering for an event, users should only need to supply minimal data, the rest should be centrally stored.
[closed]
Registration for registered users only?
(4 posts) (3 voices)-
Posted 3 years ago #
-
Its possible, but I will not be adding that feature anytime soon. In most wordpress blogs, people don't sign up - so most users will not need it.
But if you are familiar with PHP and wordpress plugin coding, feel free to do it.Posted 3 years ago # -
That's too bad, since I believe most sports clubs like to have their users registered to offer them signups.
Anyhow, that's what I'll need to be doing for the next 2 or 3 sports clients
Uhm, I guess I can do something with the plugin "register plus" - it offers query keys for auto-completion of forms, I guess I'll be able to either pre-fill in the necessary fields, or add them as hidden fields (oooh, much nicer, now that I think of it) for the signup process.
If I figure something out I'll let you know. Thanks for the reply!Posted 3 years ago # -
in show_registration_form.php I changed line 59 to
if (!$_POST['action'] or $errors or is_user_logged_in()) { // Show The From.
Then, since we need a message to let people know you can only register when you're a member and logged in, lines 90 to 93 now look like this:
<?php }
} else { //Invalid event/Inactive event.
print "Die Turnierregistrierung ist nicht möglich - entweder sind Sie kein registriertes Mitglied, oder das Turnier ist bereits vorbei. Oder beides.";
}
Maybe it helps.Posted 3 years ago #
Topic Closed
This topic has been closed to new replies.