Events Made Easy Forums Bug fixed or feature request implemented RSVP issue for non WP members

Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #43695
    Anonymous
    Inactive

    For non WP members, the RSVP is currently a bit buggy.

    The RSVP fields mark the required fields: name, e-mail, and seats, but I cannot access the Name or E-mail fields. They are grayed out. If I hit the send RSVP button, I get the “Please fill in all the required fields” message and I then have access to the Name and E-mail fields.

    #49309
    Franky
    Keymaster

    This is impossible for me to reproduce: the fields are read-only if you require WP membership for an event *and* if you’re not logged in, see eme_rsvp.php:

    if ($registration_wp_users_only) {
    // we require a user to be WP registered to be able to book
    if (!is_user_logged_in()) {
    return;
    }
    $readonly="disabled='disabled'";
    $bookerPhone_required="";
    } else {
    $readonly="";
    $bookerPhone_required="*";
    }

    A demo and an admin account please?

    #49310
    Franky
    Keymaster

    classified as not-a-bug, works just fine for me.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘Bug fixed or feature request implemented’ is closed to new topics and replies.
Scroll to Top