Title: Require registration!
Last modified: August 20, 2016

---

# Require registration!

 *  Resolved [kingofpain](https://wordpress.org/support/users/kingofpain/)
 * (@kingofpain)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/require-registration/)
 * Is it possible to make it mandatory for users submitting events to have to enable
   registration for thier events, like take off the check box and just show number
   of Spaces/tickets.
 * [http://wordpress.org/extend/plugins/events-manager/](http://wordpress.org/extend/plugins/events-manager/)

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Thread Starter [kingofpain](https://wordpress.org/support/users/kingofpain/)
 * (@kingofpain)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/require-registration/#post-3462797)
 * and possibly set 0 to unlimited spaces
 *  [agelonwl](https://wordpress.org/support/users/angelonwl/)
 * (@angelonwl)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/require-registration/#post-3462823)
 * yes, please see template file at wp-contents/plugins/events-manager/templates/
   forms/event-editor.php
 * to use templates files: [http://wp-events-plugin.com/documentation/using-template-files/](http://wp-events-plugin.com/documentation/using-template-files/)
 *  Thread Starter [kingofpain](https://wordpress.org/support/users/kingofpain/)
 * (@kingofpain)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/require-registration/#post-3462905)
 * thanks i have now copied the event-editor to my theme but im having trouble figuring
   out which bit of code i need to change to make bookings required
 * here is the booking part:
 *     ```
       <?php if( get_option('dbem_rsvp_enabled') && $EM_Event->can_manage('manage_bookings','manage_others_bookings') ) : ?>
       		<!-- START Bookings -->
       		<h4><?php _e('Bookings/Registration','dbem'); ?></h4>
       		<div class="inside event-form-bookings">
       			<?php em_locate_template('forms/event/bookings.php',true); ?>
       		</div>
       		<!-- END Bookings -->
       		<?php endif; ?>
       ```
   
 *  [agelonwl](https://wordpress.org/support/users/angelonwl/)
 * (@angelonwl)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/require-registration/#post-3462918)
 * sorry, I forgot to mention that you also need this file forms/event/bookings.
   php in your theme also;
 * 1. make sure that this line is checked
    `<input id="event-rsvp" name='event_rsvp'
   value='1' type='checkbox' <?php echo ($EM_Event->event_rsvp) ? 'checked="checked"':'';?
   > />`
 * 2. remove this css style `display:none;` at `<div id="event-tickets" style="<?
   php echo ($EM_Event->event_rsvp) ? '':'display:none;' ?>">`

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Require registration!’ is closed to new replies.

 * ![](https://ps.w.org/events-manager/assets/icon-256x256.png?rev=3550347)
 * [Events Manager - Calendar, Bookings, Tickets, and more!](https://wordpress.org/plugins/events-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/events-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/events-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/events-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/events-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/events-manager/reviews/)

## Tags

 * [Registration](https://wordpress.org/support/topic-tag/registration/)
 * [require()](https://wordpress.org/support/topic-tag/require/)

 * 4 replies
 * 2 participants
 * Last reply from: [agelonwl](https://wordpress.org/support/users/angelonwl/)
 * Last activity: [13 years, 5 months ago](https://wordpress.org/support/topic/require-registration/#post-3462918)
 * Status: resolved