Posted: May 7, 2014 at 4:31 am
|
On 2014-05-02 18:52, tarsem@nordiff.com wrote: |
Hi Amber, The email you included within this post included login details, I have removed these as this is a public forum, I would advise against posting details such as those publicly. If you notice the breadcrumbs for that page you linked you’ll notice that documentation is for EE3, not EE4. http://take.ms/lvl9K Unfortunately at this time EE4 does not support Waitlist events. |
|
|
Hi Tony Warwick, 1) I have read your reply so, you ask me that EE4 does not suppor waitlist events right. Or is it possible in EE3. Because my client needs these waiting list functionality on this calendar. 2) Second : I have shown the events own my home page recent three also new york categories events also and there is show given below warning message when i shown two type of events in one page : Warning: Illegal offset type in isset or empty in /home/arvsush/public_html/dating/wp-includes/plugin.php on line 314 Site url : http://nordiff.biz/dating/ Please tell me how to remove these messages and also how to change the design different events according to categories wise. Design must be diffferent particular categories. Thanks in Advance. |
|
Hi Amber, 1) EE3 does support waitlists. EE4 does not (currently). 2) It’s hard to say where that error is coming from. The first thing I would do is update to the latest version of EE4 (4.2.3) and see if that resolves it. If not then I would check any code modifications that you may have made. Design) It looks like the category is not shown in the code for the event, so styling them differently may be difficult. I will raise a ticket to see if we can add that in as it will be useful to have. |
|
Hi Dean, Should i move to EE3 because i need waitlisting? Is it possible to change my plugin to EE3 or do i have to pay again? Thanks |
Your current license includes EE3. However EE3 and EE4 are vastly different systems. Events created within EE4 will not be available within EE3 so you will need to recreate these. You can run either EE3 or EE4, be sure to deactivate whichever version you have at the time before activating the other. I would advise installing EE3 locally (or on a development server) first to see if it suits your needs. |
|
If you have Event Espresso 4 installed this is something you can add to your theme’s functions.php file or into a custom snippet plugin that will add a category post class to the event archive: // Add custom taxonomies to the post class add_filter( 'post_class', 'ee_add_taxonomy_post_class', 10, 3 ); function ee_add_taxonomy_post_class( $classes, $class, $ID ) { $taxonomy = 'espresso_event_categories'; $terms = get_the_terms( (int) $ID, $taxonomy ); if( !empty( $terms ) ) { foreach( (array) $terms as $order => $term ) { if( !in_array( $term->slug, $classes ) ) { $classes[] = $term->slug; } } } return $classes; } |
|
The support post ‘Split: Waiting List – Assign Attendees to Event’ 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.