RSVP Error: Please fill in the RSVP confirmation name and email fields
-
Hi,
Same issue has popped up. The full name and email information requirement was being autocomplete / autofill as the event settings had the options enabled:
- Require users to log in before they RSVP
- Require users to log in before they purchase tickets
Not sure what changed, but now the section doesn’t autofill the full name nor email of a logged in user(s) and there is new code in rsvp.min.css to hide the section:
.tribe-tickets-meta-row { display: none; }
All users now get the error:
Please fill in the RSVP confirmation name and email fields.
Have beeing using this gist’s code to default the field to and add a max value of ‘1’.
//Disable number counter for rsvp add_action( 'wp_footer', 'tribe_limit_rsvps_to_one' ); function tribe_limit_rsvps_to_one() { wp_enqueue_script( 'jquery' ); ?> <script> jQuery(document).ready(function($){ if ( $('.tribe-events-tickets' ).length ) { var $input = $('.tribe-events-tickets' ).find( 'input.tribe-ticket-quantity' ); $input.attr( 'type', 'text' ); //$input.attr( 'disabled', 'disabled' ); $input.attr( 'max', '1' ); $input.val( '1' ); } }); </script> <?php }
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘RSVP Error: Please fill in the RSVP confirmation name and email fields’ is closed to new replies.