Support

Home Forums Event Espresso Premium Split: Waiting List – Assign Attendees to Event

Split: Waiting List – Assign Attendees to Event

Posted: May 7, 2014 at 4:31 am


amber soletti

May 7, 2014 at 4:31 am

On 2014-05-02 18:52, tarsem@nordiff.com wrote:
> Hello,
>
> I had written to you earlier but haven’t received any reply. Can you
> please look into this and provide with the right documentation.
>
> Thanks
>
>
> ——– Original Message ——–
> Subject: Question on wait listing events
> Date: 2014-04-30 13:11
> From: tarsem@nordiff.com
> To: support@eventespresso.com
>
> Hi
>
> I am using Event Espresso 4.1.12.reg. Now, i AM TRYING TO CREATE WAIT
> LIST EVENTS AS PER THE DOCUMENTATION GIVEN HERE
> https://eventespresso.com/wiki/create-a-waiting-list-for-your-event/
>
> Now, the instruction here say that there is an “Advanced options”
> field but I don’t see that field in my event details.
>
> I have a feeling that this documentation is not valid for my version, perhaps.
>
> I have purchased a version of Events Espresso and details are given
> below: Please HELP!! I need help two 2 things
> a) Create wait list for an event
> b) Display the status of the member – whether he is waitlist member or
> a confirmed member
>
> Thanks,
> tarsem
>

  • This topic was modified 10 years ago by  Tony. Reason: Removed login details
  • This topic was modified 10 years ago by  Tony.


Tony

  • Support Staff

May 7, 2014 at 4:45 am

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.


amber soletti

May 8, 2014 at 1:18 am

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.


Dean

May 8, 2014 at 1:49 am

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.


amber soletti

May 9, 2014 at 12:31 am

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


Tony

  • Support Staff

May 9, 2014 at 4:18 am

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.


Josh

  • Support Staff

May 12, 2014 at 11:48 am

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.

Event Espresso