FAQs

A Club is any group of people that want to organise Events, invite Contacts, and see who’s coming, and who is not. This could be a football team, a golf society, a bridge club, a reenactment group, a dance troop, a pilates class… the list is endless.

Your Club size is limited by your plan, but then again that depends on how you use ClubEvent.  You can run invitation events, in which case invitations can only be sent to Club contacts or members.  You can run ticketed events which can be open to all (or restricted to club contacts and members).

If you intent to use ClubEvent to manage your member subscriptions, then no. of plans and members will be important to you.

FREE plan
This plan is limited to 40 Contacts, 5 members and 1 membership plan

CLUB plan
This plan is limited to 100 Contacts, 50 members and 5 membership plans

CLUB XTRA plan
This plan is limited to 250 Contacts and 100 members

CLUB PRO plan
This plan is limited to 500 Contacts and 250 members.

Please contact us if your Club has more than 500 Contacts or more than 250 members, – we can create bespoke Plans.

Events are created within a club. Each club that you create has a separate list of events, contacts and settings. Thus, you could use one club for the sports club that you run and another for family events.

Clubs are managed using a mobile app or any web browser. Your participants can use the same app to interact with events or they can be invited/updated via email messages.

There is also an “Events” web page that can be embedded in your club website, or used standalone. This will display a list of upcoming (public) events and allow people to obtain tickets for those events.

An Event is something you want people to come to! It could be a competition, a match, a party, a dinner, a meeting, a four-ball, some training …. just about anything you want really.

The number of Events your Club can have is limited by your plan

FREE plan
This plan is limited to 40 Events.  Once you reach 40, you will need to delete old Events to make room for new Events.

CLUB plan
This plan is limited to 100 Events.

CLUB XTRA plan
This plan is limited to 250 Events.

CLUB PRO plan
This plan is limited to 1000 Events.

Events are as simple or as complex as you want them to be.  An event has a Title, Date, Time, Duration, Location and Description.  Some features of events:

  • Publish event to ical and web feeds
  • Add link to one or more addtional documents (web links) which might be a web page, a PDF ‘prospectus’ document, map etc.
  • Display addtional organiser information
  • Set both ‘open’ and ‘close’ dates, to define the period that people can accept invitations or obtain tickets
  • Set reminder schedule for to invitees; reminding them to accept/decline
  • Set reminder schedule for attendees; reminding them about the event
  • Easily send update messages to attendees; informing them of any event changes
  • Hold ticketed events
    • Attendees can obtain one or more tickets
    • Create different custom ticket types (e.g. Adult, Child)
    • Collect custom information for each ticket purchase
  • Hold paid events
    • Each ticket type can be priced
    • Payment can be taken using a credit card through ClubEvent or you can setup instructions telling people to make payments via other systems
  • Create events with multiple possible dates; this allows invitees to select when they can attend, so that you (the organiser) can select the final date based on their responses…Ideal for the difficult to arrange night out!

Invitation Event
When you create an invitation event, once you have filled in all the normal details such as date, time, location, duration, you then need to invite people from your contacts list.

Each of these will receive an invitation to their email address, and if they use the mobile app, the event will appear there and they will receive a mobile notification.

They can then accept or decline the invitation and send comments to you, the organiser.

Ticketed Events
A ticketed event allows you to run events that are open to anyone to join.  Clearly, how you publicise this event determines who is going to buy those tickets.

Use them to run a club BBQ, social evening, training session.  It’s an ‘open’ event, and you won’t know who is coming until they have obtained their tickets.

All plans come with the ticketing module.  The free plan is limited to 100 tickets per event, other plans have no limits.

Members obtain tickets through the events list, which can be hosted on your website, or found on ours.  A single member can obtain tickets for others.  Tickets are emailed to the member, and they can return and change some elements of the ticket at will.

As Organiser, you will receive notifications when anyone obtains a ticket and are able to easily send messages to one or all ticket holders at any time.  Close to the event, you can export ticket details, so you have full control at the event.

Every Club has one Club Owner who manages the subscription plan.  Only the Club Owner can change the Plan, or delete the Club.

For CLUB, XTRA and PRO plans:
Only the Club Owner can give or take-back Administrator permissions to other Contacts in the Club.

Whilst we call them an “Administrator”, you might call them Team Managers, Coaches, Leaders, Captains, etc.  Admins can create, edit and delete events.

FREE plan
Only the club Owner can act as an Administrator

CLUB, XTRA and PRO plans
In these plans an Administrator is someone who can also create Events and invite Contacts to that Event.

A Contact is someone you invite to an Event.  Whilst we call them Contacts, you might call them Members, Players, Rowers, Archers, Juniors, Adults, Colleagues, Coaches, Friends, etc, etc

FREE plans
This plan is limited to 40 Contacts.

CLUB plan
This plan is limited to 100 Contacts.

CLUB XTRA plan
This plan is limited to 250 Contacts.

CLUB PRO plan
This plan is limited to 500 Contacts.

A Member is someone that has subscribed to one of your Membership plans. They are essentially the same as “Contacts” but they subscribe to the club.  Plans can be set-up that take payment on a regular basis from your members, e.g. Annually, Monthly, Quarterly etc.

FREE plans
This plan is limited to 5 Members.

CLUB plan
This plan is limited to 50 Members.

CLUB XTRA plan
This plan is limited to 100 Members.

CLUB PRO plan
This plan is limited to 250 Members.

If you need more than 250 members, please contact us.

A regex, or regular expression is a way of making sure that data is entered correctly into a field – as the text entered must match the regex.

A simple regex, as used by ClubEvent might be:  ^[0-9]+$
This limits entry to “one or more” number characters from 0 to 9, where:

  • ^  anchors the start of the string
  • $ anchors the end of the string
  • [ ] contains the allowed characters (or range of characters)
  • + means ‘one or more’

[0-9]+  on its own would simply match any string that contained a number, hence the importance of the surrounding ^ and $.

This site has a nice quickstart on regex and the characters can be used.  http://www.rexegg.com/regex-quickstart.html

Note that regex can get complex quite quickly, and it is easy to miss something – e.g. many people forget that the dash and apostrophes are valid in peoples names!

As an example, here is a regex for a time HH:MM

^([0-1]*[0-9]|(2)[0-3])(:)([0-5][0-9])$
 

and one for a valid email address:

^(?:[a-z0-9!#$%&\’*+\/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&\’*+\/=?^_`{|}~-]+)*|”(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*”)@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])$

 

 

 

 

Web
The web interface enables you to place a list of events on your website. However, it enables far more than that if your events are ticketed as this is where people will purchase tickets, and come back to should they need to change any extra information that they have supplied with the tickets.

The web interface can be used standalone, using a URL as below.  The clubcode can be found in your club settings:
        https://events.clubevent.co.uk/clubs/{clubcode}.html      (when this form is used in facebook posts, your club logo will be seen)
or
        https://events.clubevent.co.uk/e/{clubcode}

This can also be integrated into your own website using an iframe. You can add &header=false to remove the logo, title and description from the content.

You can also link to, or embed a single event, as below.  The event code can be found in the event.
        https://events.clubevent.co.uk/clubs/{clubcode}.html?eventid=[eventcode]  (when this form is used in facebook posts, your club logo will be seen)
or
       https://events.clubevent.co.uk/e/{clubcode}/{eventcode}

iCal
The ical feed is a simple way of integrating Club Event data into calendars. Most calendar clients allow the import of ical (ics) files. Simply use your club short name to form the URL, like:

https://api.clubevent.co.uk/club?view=ical&club={clubcode}

Comparison with other ticketing systems

A direct comparison with other systems is a little tricky, as ClubEvent crosses the boundary between team management software, and a conventional ticketing system.  Many systems out there are highly commercial, where a small club can get a free entry level plan, which is attractive, but restrictive.  As a small club, you are unlikely to get any changes made to fit your requirements and when you want to move to a paid plan, the prices start to stack up.

At ClubEvent, we are a small team, we run small (<200 member) clubs ourselves and live the issues.  We want to make the system work for you, so we will try to incorporate new ideas and requirements.

Please let us know if you would like another system added to this comparison chart.

We have tried to compare like-for-like, using plans that have the following as minimum criteria, compared with other ticketing systems first:

  • Events with paid tickets
  • Multiple ticket types
  • Our example event: 60 tickets sold at £20 each
SystemClubEventEventBriteBookWhen LiteTicketSourceTicketTailor
Annual fee£44£0 (£7.99 per event)£129.60£0£0
Per ticket
(inc card fee)
20p + 2.1%59p + 6.95%(+VAT)20p + 1.5% (Stripe)7% (+VAT)80p + 1.5% (Stripe)
Total fees for example event (60 @ £20)£37.2£150.55£30£100.8£66
Offline payment supportYesNoYesNoNo
Fastest payoutImmediateWeeklyImmediateAfter event (unless Stripe used)Immediate
Embed on websiteYesYesYesYesYes
Custom event pageYesYesYesYesUnclear
Collect additional detailsYesYesYesNoUnclear
Organiser appYesYesNoUnclearNo
Invitation only eventsYesYesNoNoNo

Comparison with Team management systems

A direct comparison with other systems is a little tricky, as ClubEvent crosses the boundary between team management software, and a conventional ticketing system.  Many systems out there are highly commercial, where a small club can get a free entry level plan, which is attractive, but restrictive.  As a small club, you are unlikely to get any changes made to fit your requirements and when you want to move to a paid plan, the prices start to stack up.

At ClubEvent, we are a small team, we run small (<200 member) clubs ourselves and live the issues.  We want to make the system work for you, so we will try to incorporate new ideas and requirements.

ClubEvent

Teamer

No advertisingAdvertising throughout the app
Create “invitation” events AND “ticketed” eventsInvitation events only.
“Closed” invitation events (to Contacts/Members only), OR,  “Open/Public” events that anyone can buy tickets for.Invitation events only.
Create events where only the people invited can see them.Not supported – Everyone see’s every event, even ones they are not invited to.
Set events with start time and duration.Only set the start time.
Event names as long as you like.Event names limited to 18 characters.
Set a “Respond By” date.Not supported
Optionally hide events you “Decline”Not supported
Send Reminders to people who have accepted at multiple times before the event.One reminder only.
Send Reminders to people who have not yet responded to an event.Not supported
See the date and time that people accept an event.Not supported.
Individually apply, or bulk apply Tags to Contacts/Members to create groups that can easily be filtered (people can have multiple Tags, eg: “U23”, “Coach”, “Committee”)Add tags one at a time.
Copy an event, including all the people previously invited.  Great for repeat events, eg: weekly training.Not supported
Import Contacts from your address book.Not supported
Import Contacts from a spreadsheetNot supported
Connect to your club’s Stripe account to accept payments for ticket sales.Not supported
Set you club’s colour ThemeNot supported
Weekly summary activity Email to club admins.Not supported
iCal feed for all events.Not supported
Web feed for all public events.Not supported
Embed ClubEvent into your website (supports iFrame)Not supported

Please let us know if you would like another system added to this comparison chart.

We use Stripe as our Payment Provider.  They are awesome, and their fees are low. We run our own clubs, we know every penny counts.  Some of our competitors will take 10% of your ticket price AND take the payment provider fees, or ask that you pass these onto your members/ticket purchasers.  We want ClubEvent to work for YOU, as much as it works for US.

Stripe fees for UK cards are 1.5% + 20p per transaction.  We charge 0.6% on top, making that 2.1% + 20p at their current rate.

Please check Stripe prices here:  https://stripe.com/gb/pricing  

Let’s keep this simple!
Your data is your data. We will NEVER disclose your data to third parties without your specific consent.  If you wish to have all data deleted, please contact us. We are compliant with GDPR.

Data held in a Club is created and curated by the Club Owner and Administrators, who have full control over that data.  For more information on the App data policy, please see:  https://www.clubevent.co.uk/data-policy/

Data collected by us is used to manage your subscription and is as follows:

    • Club ‘Owner’ Name and Email address
    • Club name, code and location
    • We do not hold credit card data; this is all handled by Stripe
      • When used to pruchase tickets, no data is stored
      • Stripe will retain card information for recurring subscriptions