StonehengeCreations

EM - Make Spaces Dropdown Required

Dec 15th, 2019
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. <?php
  2. function stonehenge_em_add_empty_to_spaces() {
  3.     // Only add the script if this is a single event and has bookings enabled.
  4.     global $EM_Event;
  5.     if( is_singular('event') && '1' === $EM_Event->rsvp ) {
  6.         ?><script>
  7.             jQuery.noConflict();
  8.             jQuery(".em-ticket-select").prepend("<option value='0' selected='selected' disabled='disabled'>--</option>");
  9.             (jQuery);
  10.         </script><?php
  11.     }
  12. }
  13. add_action('em_booking_form_ticket_footer', 'stonehenge_em_add_empty_to_spaces');
Advertisement
Add Comment
Please, Sign In to add comment