• Resolved scubatinoo

    (@scubatinoo)


    Hi Folks

    Is it possible to show the Total of Attendees on the Frontend page to everyone?

    So far i have an event detail page with a RSVP at the end. It would be nice for my friends to see if and how many Attendees will join the event… But i don’t want them to register for this feature… Any idea? Thanks in advance

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Contributor Andras Guseo

    (@aguseo)

    Hey @scubatinoo,

    Thanks for reaching out with your question.

    That feature is already built into our plugin. When you go to the single event page you should see the total number of attendees who replied. Here’s a screenshot with the twentyfifteen theme.
    Cloudup rz0hj21cjeh

    Maybe your theme has a template override and doesn’t show this info. Check with a default theme like twentyfifteen or twentyseventeen.

    Cheers,
    Andras

    Thread Starter scubatinoo

    (@scubatinoo)

    @aguseo Thank you. I’m using the Avada theme, so it looks like you’re right. Where will i find the code that shows this information? And is it shown within the events calendar? It’s not clear to me because both tickets and events are generating the single event page… Thanks for your help!

    Plugin Contributor Andras Guseo

    (@aguseo)

    Hi,

    is it shown within the events calendar?

    What exactly do you mean by this?
    The number of attendees are shown only on the single event page, by default. With some custom code you could achieve this in other views as well.

    The code responsible for showing this is in this file, line 15:
    wp-content\plugins\event-tickets-plus\src\views\attendees-list.php

    Looks like this:
    <p><?php echo esc_html( sprintf( _n( 'One person is attending %2$s', '%d people are attending %s', $attendees_total, 'event-tickets-plus' ), $attendees_total, get_the_title( $event->ID ) ) ); ?></p>

    I checked with default Avada and it should also show this info on the single event page.

    Does this help?
    A.

    Thread Starter scubatinoo

    (@scubatinoo)

    @aguseo Thank you. According to the path this “feature” is only for the Plus-Version. I’m using the free one so far… ??

    Plugin Contributor Andras Guseo

    (@aguseo)

    Yeah, sorry about the confusion here. You mentioning “tickets” made me think you have ET+ as well. Yes, that is a feature of ET+.

    Without ET+ you would need some custom coding to achieve that.

    A.

    Thread Starter scubatinoo

    (@scubatinoo)

    @aguseo No worries. I’ve expected that such a basic feature would be available in the free-version too… But it’s not a reason enough for me to buy the Plus version, because it’s the only feature i’m missing… thanks anyway.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Total of Attendees on Frontendpage’ is closed to new replies.