Hello EE Folk! :)A question has come up and I can’t seem to find much documentation on this subject at all. We have certain events that are closed for registration until a date and time. Right now, when registration is closed, the event registration shows “You will be able to register starting January 22, 2013.” Is there a way to get this to read “You will be able to register starting January 22, 2013 at 10:00am.” ??I tried adding the time code “g:i a” to the end, but that only displays 12:00am, which isn’t the time registration starts.Thanks again, as always, for your help!
You can add the following code to your registration_page_display.php file in your templates directory. Be sure to move that file to the uploads/espresso/templates directory to prevent the modification from being overwritten during an upgrade.
<?php echo __('You will be able to register starting ', 'event_espresso') . event_espresso_no_format_date($reg_start_date, 'F d, Y') . __(' at ', 'event_espresso') . date( 'g:i a', strtotime( $data->event->registration_startT )); ?>
If there is no registration start time, it will display as 12:00am. That is the default time.
You. Guys. ROCK! That did it. As always, thanks so much for your help! ๐
Viewing 2 reply threads
The support post ‘Registration Start Date & Time’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.