Support

Home Forums Event Espresso Premium Wait list not working with Recurring Events Dropdown addon

Wait list not working with Recurring Events Dropdown addon

Posted: May 15, 2014 at 8:21 am


Anthony Snippe

May 15, 2014 at 8:21 am

The client has confirmed that the setup of the waitlist events and linking to them by the main event is all correct. They are showing in the dropdown list but if you click on them the screen refreshes the current event list and does not actually go to the waitlist event to let the user register.

If you can send me a method to send you links privately I can send you a link to the event list page for this site.

Thank you


Tony

  • Support Staff

May 15, 2014 at 8:34 am

Hi Anthony,

If you can email links to support[at]eventespresso.com we can take a look.

Please include a reference to this thread within the email.


Tony

  • Support Staff

May 19, 2014 at 8:33 am

Hi Anthony,

I looked a little deeper into this and think I’ve found the issue.

If you open espresso-template-recurring-dropdown/index.php, on line 157 you’ll find:

echo '[ <a href="'.espresso_reg_url($event->overflow_event_id).'">'.__('Join Waiting List').'</a> ]';

Replace that single line with these:

$overflow_url = espresso_reg_url($e['overflow_event_id']);									echo '[ <a class="waitlist" href="'.$overflow_url.'">'.__('Join Waiting List').'</a> ]';

So lines 158 to 164 will look something like this:

if ($num_attendees >= $e['reg_limit']){
	echo ' - '.__('Sold Out', 'event_espresso').'</span>';
	if ($e['allow_overflow'] == 'Y'){
		$overflow_url = espresso_reg_url($e['overflow_event_id']);
		echo '[ <a class="waitlist" href="'.$overflow_url.'">'.__('Join Waiting List').'</a> ]';
	}
}
  • This reply was modified 9 years, 12 months ago by  Tony.

The support post ‘Wait list not working with Recurring Events Dropdown addon’ 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.

Event Espresso