• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer

Widget For Eventbrite API

Demo for Widget For Eventbrite API plugin

  • Get this plugin
  • See all plugins
  • Documentation

Calendar Layout Demo

4th July 2018 by alan

The Eventbrite display plugin has many pre styled formats and one such format is a calendar layout as shown here ( see alternative such as grid layout )

This uses the shortcode [wfea layout='cal' newtab='true' limit='999' popup='true'] which will display the calendar layout and the links will open in a new tab

Filed Under: Uncategorised

Grid Layout Demo

22nd May 2018 by alan

A popular grid layout using shortcode [wfea layout="grid" newtab="true" tickets="true" limit="9" ]

Monday Coffee Chat

May 17th

Monday Coffee Chat

17th May 2022, 9:30 am - 12:30 pm
Focus on Being Productive, not busy. This is a test event, it will never actually happen.Read More »
Another Event

May 17th

Another Event

17th May 2022, 7:00 pm - 10:00 pm
This is just a test event, with cute kittensRead More »
Test Donation Event

May 18th

Test Donation Event

18th May 2022, 7:00 pm - 10:00 pm
This is a test event that wont actually happen. It tests donations. If you are silly enough to donate money then don’t expect it back.Read More »
Demo Private Event

May 18th

Demo Private Event

18th May 2022, 7:00 pm - 10:00 pm
An Event Set to PrivateRead More »
Design, code, market

May 18th

Design, code, market

18th May 2022, 7:30 pm - 10:30 pm
This is an example person to person event. It will not actually take place.Read More »
Monday Coffee Chat

May 24th

Monday Coffee Chat

24th May 2022, 9:30 am - 12:30 pm
Focus on Being Productive, not busy. This is a test event, it will never actually happen.Read More »
Another Event

May 24th

Another Event

24th May 2022, 7:00 pm - 10:00 pm
This is just a test event, with cute kittensRead More »
Test Donation Event

May 25th

Test Donation Event

25th May 2022, 7:00 pm - 10:00 pm
This is a test event that wont actually happen. It tests donations. If you are silly enough to donate money then don’t expect it back.Read More »
Demo Private Event

May 25th

Demo Private Event

25th May 2022, 7:00 pm - 10:00 pm
An Event Set to PrivateRead More »

Filed Under: Uncategorised

Put Eventbrite in a Pop up

9th September 2019 by alan

A new feature since 2.8.0 – you can now display Eventbrite within a popup to keep visitors on your site by specifying popup=’true’

e.g. [wfea popup='true']

Monday Coffee Chat

May 17th

Monday Coffee Chat

Focus on Being Productive, not busy. This is a test event, it will never actually happen.Read More »
17th May 2022, 9:30 am - 12:30 pm
Another Event

May 17th

Another Event

This is just a test event, with cute kittensRead More »
17th May 2022, 7:00 pm - 10:00 pm
Test Donation Event

May 18th

Test Donation Event

This is a test event that wont actually happen. It tests donations. If you are silly enough to donate money then don’t expect it back.Read More »
18th May 2022, 7:00 pm - 10:00 pm
Demo Private Event

May 18th

Demo Private Event

An Event Set to PrivateRead More »
18th May 2022, 7:00 pm - 10:00 pm
Design, code, market

May 18th

Design, code, market

This is an example person to person event. It will not actually take place.Read More »
18th May 2022, 7:30 pm - 10:30 pm

Filed Under: Uncategorised

Cal List with date range

16th August 2019 by alan

Using the Calendar List template with date ranges

[wfea length="21" layout='cal_list' limit="99999" booknow="false" start_date_range_start="-9 months" start_date_range_end="+1 year" status="live,started,ended"]

Note: status to be defined as live,started,ended to get prior events

Filed Under: Uncategorised

Calendar List View by Month

30th July 2019 by alan

Shortcode [wfea layout='cal_list' thumb='true' limit='9999999']

Filed Under: Uncategorised

Calendar with Images instead of text

29th July 2019 by alan

To get this effect requires some technical work, however I created an add on plugin that will do it for you https://github.com/alanef/display-eventbrite-template-calandar-image

the shortcode used here is [wfea layout='imagecal' limit='999']

Filed Under: Uncategorised

Ended Events

11th June 2019 by alan

Show the last 5 events that have ended or already started, and show the most recent first

[wfea limit='5' status='ended,started' order_by='desc']


Design, code, market

May 11th

Design, code, market

This is an example person to person event. It will not actually take place.Read More »
11th May 2022, 7:30 pm - 10:30 pm
Demo Private Event

May 11th

Demo Private Event

An Event Set to PrivateRead More »
11th May 2022, 7:00 pm - 10:00 pm
Test Donation Event

May 11th

Test Donation Event

This is a test event that wont actually happen. It tests donations. If you are silly enough to donate money then don’t expect it back.Read More »
11th May 2022, 7:00 pm - 10:00 pm
Another Event

May 10th

Another Event

This is just a test event, with cute kittensRead More »
10th May 2022, 7:00 pm - 10:00 pm
Monday Coffee Chat

May 10th

Monday Coffee Chat

Focus on Being Productive, not busy. This is a test event, it will never actually happen.Read More »
10th May 2022, 9:30 am - 12:30 pm

Filed Under: Uncategorised

Custom Grid Layout

9th June 2019 by alan

With a bit of CSS you can make your layouts unique to your design, in this example I have added a bit on animation, changed the number of columns, and tweaked the colors

To start with I have wrapped the I have wrapped the shortcode with an html div with a class of ‘custom1’ so I can make css changes without impacting my other examples. I have hidden the excerpt and set the book now text, and link directly to the ticket screen.

<div class="custom1">
[wfea layout="grid" newtab="true"
 tickets="true" limit="99999" excerpt="false"
 booknow_text="BUY TICKETS"]
</div>

Now for styling: using css I will color the background to black and the text to white and force uppercase, tweak the entry meta section text size and padding and the CTA button height.

.custom1 section.wfea.grid  .entry-meta {
	border: none;
	color: #fff;
	font-size: 75%;
	padding-left:5px;
}
.custom1 .post, .custom1 .entry-header,
 .custom1 .booknow, .custom1 button {
	background-color: #000;
}
.custom1 .entry-header p, .custom1 .entry-header a {
	color: #fff;
}
.custom1 section.wfea  button {
	color: #e7e535;
	text-align: left;
	margin-bottom: 0;
}
.custom1 .booknow {
	line-height: 1;
}

Also let us remove the top date – just leaving the lower date and time.

.custom1 .entry-header time {
	display: none;
}

Now, to change the number of columns, you will need to work out your own media break points based on your own theme. Here I am going from 5 columns, to 3 columns, to 2 columns, to 1 column

.custom1 section.wfea.grid {
        grid-template-columns: repeat(5,1fr);
grid-gap: 30px 15px;
}
@media only screen and (max-width: 1200px) {
	.custom1 section.wfea.grid {
	grid-template-columns: repeat(3,1fr);
	}
}
@media only screen and (max-width: 1024px) {
	.custom1 section.wfea.grid {
	grid-template-columns: repeat(2,1fr);
	}
}
@media only screen and (max-width: 600px) {
	.custom1 section.wfea.grid {
	grid-template-columns: repeat(1,1fr);
	}
}

Then lets add some animation, I’m going to make the individual post move up on hover, and also add an arrow on the CTA button

.custom1 .post:hover {
	margin-top: -20px;
	transition: margin 600ms;
}
.custom1 .post {
	margin-top: 0px;
	transition: margin 600ms;
	text-transform: uppercase;
}
.custom1 section.wfea .booknow button:after {
	content: '\2192';
	opacity: 0;
    transition: all 500ms;
}
.custom1 section.wfea .booknow button:hover::after {
	opacity: 1;
	padding-left: 1em;
	transition: all 500ms;
}

And below is the final output, so with some CSS and a bit of experimenting you can create your own unique look.

Monday Coffee Chat

May 17th

Monday Coffee Chat

17th May 2022, 9:30 am - 12:30 pm
Another Event

May 17th

Another Event

17th May 2022, 7:00 pm - 10:00 pm
Test Donation Event

May 18th

Test Donation Event

18th May 2022, 7:00 pm - 10:00 pm
Demo Private Event

May 18th

Demo Private Event

18th May 2022, 7:00 pm - 10:00 pm
Design, code, market

May 18th

Design, code, market

18th May 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

May 24th

Monday Coffee Chat

24th May 2022, 9:30 am - 12:30 pm
Another Event

May 24th

Another Event

24th May 2022, 7:00 pm - 10:00 pm
Test Donation Event

May 25th

Test Donation Event

25th May 2022, 7:00 pm - 10:00 pm
Demo Private Event

May 25th

Demo Private Event

25th May 2022, 7:00 pm - 10:00 pm
Design, code, market

May 25th

Design, code, market

25th May 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

May 31st

Monday Coffee Chat

31st May 2022, 9:30 am - 12:30 pm
Another Event

May 31st

Another Event

31st May 2022, 7:00 pm - 10:00 pm
Test Donation Event

Jun 1st

Test Donation Event

1st June 2022, 7:00 pm - 10:00 pm
Demo Private Event

Jun 1st

Demo Private Event

1st June 2022, 7:00 pm - 10:00 pm
Design, code, market

Jun 1st

Design, code, market

1st June 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Jun 7th

Monday Coffee Chat

7th June 2022, 9:30 am - 12:30 pm
Another Event

Jun 7th

Another Event

7th June 2022, 7:00 pm - 10:00 pm
Test Donation Event

Jun 8th

Test Donation Event

8th June 2022, 7:00 pm - 10:00 pm
Demo Private Event

Jun 8th

Demo Private Event

8th June 2022, 7:00 pm - 10:00 pm
Design, code, market

Jun 8th

Design, code, market

8th June 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Jun 14th

Monday Coffee Chat

14th June 2022, 9:30 am - 12:30 pm
Another Event

Jun 14th

Another Event

14th June 2022, 7:00 pm - 10:00 pm
Test Donation Event

Jun 15th

Test Donation Event

15th June 2022, 7:00 pm - 10:00 pm
Demo Private Event

Jun 15th

Demo Private Event

15th June 2022, 7:00 pm - 10:00 pm
Design, code, market

Jun 15th

Design, code, market

15th June 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Jun 21st

Monday Coffee Chat

21st June 2022, 9:30 am - 12:30 pm
Another Event

Jun 21st

Another Event

21st June 2022, 7:00 pm - 10:00 pm
Test Donation Event

Jun 22nd

Test Donation Event

22nd June 2022, 7:00 pm - 10:00 pm
Demo Private Event

Jun 22nd

Demo Private Event

22nd June 2022, 7:00 pm - 10:00 pm
Design, code, market

Jun 22nd

Design, code, market

22nd June 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Jun 28th

Monday Coffee Chat

28th June 2022, 9:30 am - 12:30 pm
Another Event

Jun 28th

Another Event

28th June 2022, 7:00 pm - 10:00 pm
Test Donation Event

Jun 29th

Test Donation Event

29th June 2022, 7:00 pm - 10:00 pm
Demo Private Event

Jun 29th

Demo Private Event

29th June 2022, 7:00 pm - 10:00 pm
Design, code, market

Jun 29th

Design, code, market

29th June 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Jul 5th

Monday Coffee Chat

5th July 2022, 9:30 am - 12:30 pm
Another Event

Jul 5th

Another Event

5th July 2022, 7:00 pm - 10:00 pm
Test Donation Event

Jul 6th

Test Donation Event

6th July 2022, 7:00 pm - 10:00 pm
Demo Private Event

Jul 6th

Demo Private Event

6th July 2022, 7:00 pm - 10:00 pm
Design, code, market

Jul 6th

Design, code, market

6th July 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Jul 12th

Monday Coffee Chat

12th July 2022, 9:30 am - 12:30 pm
Another Event

Jul 12th

Another Event

12th July 2022, 7:00 pm - 10:00 pm
Test Donation Event

Jul 13th

Test Donation Event

13th July 2022, 7:00 pm - 10:00 pm
Demo Private Event

Jul 13th

Demo Private Event

13th July 2022, 7:00 pm - 10:00 pm
Design, code, market

Jul 13th

Design, code, market

13th July 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Jul 19th

Monday Coffee Chat

19th July 2022, 9:30 am - 12:30 pm
Another Event

Jul 19th

Another Event

19th July 2022, 7:00 pm - 10:00 pm
Test Donation Event

Jul 20th

Test Donation Event

20th July 2022, 7:00 pm - 10:00 pm
Demo Private Event

Jul 20th

Demo Private Event

20th July 2022, 7:00 pm - 10:00 pm
Design, code, market

Jul 20th

Design, code, market

20th July 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Jul 26th

Monday Coffee Chat

26th July 2022, 9:30 am - 12:30 pm
Another Event

Jul 26th

Another Event

26th July 2022, 7:00 pm - 10:00 pm
Test Donation Event

Jul 27th

Test Donation Event

27th July 2022, 7:00 pm - 10:00 pm
Demo Private Event

Jul 27th

Demo Private Event

27th July 2022, 7:00 pm - 10:00 pm
Design, code, market

Jul 27th

Design, code, market

27th July 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Aug 2nd

Monday Coffee Chat

2nd August 2022, 9:30 am - 12:30 pm
Another Event

Aug 2nd

Another Event

2nd August 2022, 7:00 pm - 10:00 pm
Test Donation Event

Aug 3rd

Test Donation Event

3rd August 2022, 7:00 pm - 10:00 pm
Demo Private Event

Aug 3rd

Demo Private Event

3rd August 2022, 7:00 pm - 10:00 pm
Design, code, market

Aug 3rd

Design, code, market

3rd August 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Aug 9th

Monday Coffee Chat

9th August 2022, 9:30 am - 12:30 pm
Another Event

Aug 9th

Another Event

9th August 2022, 7:00 pm - 10:00 pm
Test Donation Event

Aug 10th

Test Donation Event

10th August 2022, 7:00 pm - 10:00 pm
Demo Private Event

Aug 10th

Demo Private Event

10th August 2022, 7:00 pm - 10:00 pm
Design, code, market

Aug 10th

Design, code, market

10th August 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Aug 16th

Monday Coffee Chat

16th August 2022, 9:30 am - 12:30 pm
Another Event

Aug 16th

Another Event

16th August 2022, 7:00 pm - 10:00 pm
Test Donation Event

Aug 17th

Test Donation Event

17th August 2022, 7:00 pm - 10:00 pm
Demo Private Event

Aug 17th

Demo Private Event

17th August 2022, 7:00 pm - 10:00 pm
Design, code, market

Aug 17th

Design, code, market

17th August 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Aug 23rd

Monday Coffee Chat

23rd August 2022, 9:30 am - 12:30 pm
Another Event

Aug 23rd

Another Event

23rd August 2022, 7:00 pm - 10:00 pm
Test Donation Event

Aug 24th

Test Donation Event

24th August 2022, 7:00 pm - 10:00 pm
Demo Private Event

Aug 24th

Demo Private Event

24th August 2022, 7:00 pm - 10:00 pm
Design, code, market

Aug 24th

Design, code, market

24th August 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Aug 30th

Monday Coffee Chat

30th August 2022, 9:30 am - 12:30 pm
Another Event

Aug 30th

Another Event

30th August 2022, 7:00 pm - 10:00 pm
Test Donation Event

Aug 31st

Test Donation Event

31st August 2022, 7:00 pm - 10:00 pm
Demo Private Event

Aug 31st

Demo Private Event

31st August 2022, 7:00 pm - 10:00 pm
Design, code, market

Aug 31st

Design, code, market

31st August 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Sep 6th

Monday Coffee Chat

6th September 2022, 9:30 am - 12:30 pm
Another Event

Sep 6th

Another Event

6th September 2022, 7:00 pm - 10:00 pm
Test Donation Event

Sep 7th

Test Donation Event

7th September 2022, 7:00 pm - 10:00 pm
Demo Private Event

Sep 7th

Demo Private Event

7th September 2022, 7:00 pm - 10:00 pm
Design, code, market

Sep 7th

Design, code, market

7th September 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Sep 13th

Monday Coffee Chat

13th September 2022, 9:30 am - 12:30 pm
Another Event

Sep 13th

Another Event

13th September 2022, 7:00 pm - 10:00 pm
Test Donation Event

Sep 14th

Test Donation Event

14th September 2022, 7:00 pm - 10:00 pm
Demo Private Event

Sep 14th

Demo Private Event

14th September 2022, 7:00 pm - 10:00 pm
Design, code, market

Sep 14th

Design, code, market

14th September 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Sep 20th

Monday Coffee Chat

20th September 2022, 9:30 am - 12:30 pm
Another Event

Sep 20th

Another Event

20th September 2022, 7:00 pm - 10:00 pm
Test Donation Event

Sep 21st

Test Donation Event

21st September 2022, 7:00 pm - 10:00 pm
Demo Private Event

Sep 21st

Demo Private Event

21st September 2022, 7:00 pm - 10:00 pm
Design, code, market

Sep 21st

Design, code, market

21st September 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Sep 27th

Monday Coffee Chat

27th September 2022, 9:30 am - 12:30 pm
Another Event

Sep 27th

Another Event

27th September 2022, 7:00 pm - 10:00 pm
Test Donation Event

Sep 28th

Test Donation Event

28th September 2022, 7:00 pm - 10:00 pm
Demo Private Event

Sep 28th

Demo Private Event

28th September 2022, 7:00 pm - 10:00 pm
Design, code, market

Sep 28th

Design, code, market

28th September 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Oct 4th

Monday Coffee Chat

4th October 2022, 9:30 am - 12:30 pm
Another Event

Oct 4th

Another Event

4th October 2022, 7:00 pm - 10:00 pm
Demo Private Event

Oct 5th

Demo Private Event

5th October 2022, 7:00 pm - 10:00 pm
Test Donation Event

Oct 5th

Test Donation Event

5th October 2022, 7:00 pm - 10:00 pm
Design, code, market

Oct 5th

Design, code, market

5th October 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Oct 11th

Monday Coffee Chat

11th October 2022, 9:30 am - 12:30 pm
Another Event

Oct 11th

Another Event

11th October 2022, 7:00 pm - 10:00 pm
Test Donation Event

Oct 12th

Test Donation Event

12th October 2022, 7:00 pm - 10:00 pm
Demo Private Event

Oct 12th

Demo Private Event

12th October 2022, 7:00 pm - 10:00 pm
Design, code, market

Oct 12th

Design, code, market

12th October 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Oct 18th

Monday Coffee Chat

18th October 2022, 9:30 am - 12:30 pm
Another Event

Oct 18th

Another Event

18th October 2022, 7:00 pm - 10:00 pm
Demo Private Event

Oct 19th

Demo Private Event

19th October 2022, 7:00 pm - 10:00 pm
Test Donation Event

Oct 19th

Test Donation Event

19th October 2022, 7:00 pm - 10:00 pm
Design, code, market

Oct 19th

Design, code, market

19th October 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Oct 25th

Monday Coffee Chat

25th October 2022, 9:30 am - 12:30 pm
Another Event

Oct 25th

Another Event

25th October 2022, 7:00 pm - 10:00 pm
Test Donation Event

Oct 26th

Test Donation Event

26th October 2022, 7:00 pm - 10:00 pm
Demo Private Event

Oct 26th

Demo Private Event

26th October 2022, 7:00 pm - 10:00 pm
Design, code, market

Oct 26th

Design, code, market

26th October 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Nov 1st

Monday Coffee Chat

1st November 2022, 9:30 am - 12:30 pm
Another Event

Nov 1st

Another Event

1st November 2022, 7:00 pm - 10:00 pm
Test Donation Event

Nov 2nd

Test Donation Event

2nd November 2022, 7:00 pm - 10:00 pm
Demo Private Event

Nov 2nd

Demo Private Event

2nd November 2022, 7:00 pm - 10:00 pm
Design, code, market

Nov 2nd

Design, code, market

2nd November 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Nov 8th

Monday Coffee Chat

8th November 2022, 9:30 am - 12:30 pm
Another Event

Nov 8th

Another Event

8th November 2022, 7:00 pm - 10:00 pm
Test Donation Event

Nov 9th

Test Donation Event

9th November 2022, 7:00 pm - 10:00 pm
Demo Private Event

Nov 9th

Demo Private Event

9th November 2022, 7:00 pm - 10:00 pm
Design, code, market

Nov 9th

Design, code, market

9th November 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Nov 15th

Monday Coffee Chat

15th November 2022, 9:30 am - 12:30 pm
Another Event

Nov 15th

Another Event

15th November 2022, 7:00 pm - 10:00 pm
Test Donation Event

Nov 16th

Test Donation Event

16th November 2022, 7:00 pm - 10:00 pm
Demo Private Event

Nov 16th

Demo Private Event

16th November 2022, 7:00 pm - 10:00 pm
Design, code, market

Nov 16th

Design, code, market

16th November 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Nov 22nd

Monday Coffee Chat

22nd November 2022, 9:30 am - 12:30 pm
Another Event

Nov 22nd

Another Event

22nd November 2022, 7:00 pm - 10:00 pm
Test Donation Event

Nov 23rd

Test Donation Event

23rd November 2022, 7:00 pm - 10:00 pm
Demo Private Event

Nov 23rd

Demo Private Event

23rd November 2022, 7:00 pm - 10:00 pm
Design, code, market

Nov 23rd

Design, code, market

23rd November 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Nov 29th

Monday Coffee Chat

29th November 2022, 9:30 am - 12:30 pm
Another Event

Nov 29th

Another Event

29th November 2022, 7:00 pm - 10:00 pm
Test Donation Event

Nov 30th

Test Donation Event

30th November 2022, 7:00 pm - 10:00 pm
Demo Private Event

Nov 30th

Demo Private Event

30th November 2022, 7:00 pm - 10:00 pm
Design, code, market

Nov 30th

Design, code, market

30th November 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Dec 6th

Monday Coffee Chat

6th December 2022, 9:30 am - 12:30 pm
Another Event

Dec 6th

Another Event

6th December 2022, 7:00 pm - 10:00 pm
Test Donation Event

Dec 7th

Test Donation Event

7th December 2022, 7:00 pm - 10:00 pm
Demo Private Event

Dec 7th

Demo Private Event

7th December 2022, 7:00 pm - 10:00 pm
Design, code, market

Dec 7th

Design, code, market

7th December 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Dec 13th

Monday Coffee Chat

13th December 2022, 9:30 am - 12:30 pm
Another Event

Dec 13th

Another Event

13th December 2022, 7:00 pm - 10:00 pm
Test Donation Event

Dec 14th

Test Donation Event

14th December 2022, 7:00 pm - 10:00 pm
Demo Private Event

Dec 14th

Demo Private Event

14th December 2022, 7:00 pm - 10:00 pm
Design, code, market

Dec 14th

Design, code, market

14th December 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Dec 20th

Monday Coffee Chat

20th December 2022, 9:30 am - 12:30 pm
Another Event

Dec 20th

Another Event

20th December 2022, 7:00 pm - 10:00 pm
Test Donation Event

Dec 21st

Test Donation Event

21st December 2022, 7:00 pm - 10:00 pm
Demo Private Event

Dec 21st

Demo Private Event

21st December 2022, 7:00 pm - 10:00 pm
Design, code, market

Dec 21st

Design, code, market

21st December 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Dec 27th

Monday Coffee Chat

27th December 2022, 9:30 am - 12:30 pm
Another Event

Dec 27th

Another Event

27th December 2022, 7:00 pm - 10:00 pm
Test Donation Event

Dec 28th

Test Donation Event

28th December 2022, 7:00 pm - 10:00 pm
Demo Private Event

Dec 28th

Demo Private Event

28th December 2022, 7:00 pm - 10:00 pm
Design, code, market

Dec 28th

Design, code, market

28th December 2022, 7:30 pm - 10:30 pm
Monday Coffee Chat

Jan 3rd

Monday Coffee Chat

3rd January 2023, 9:30 am - 12:30 pm
Another Event

Jan 3rd

Another Event

3rd January 2023, 7:00 pm - 10:00 pm
Test Donation Event

Jan 4th

Test Donation Event

4th January 2023, 7:00 pm - 10:00 pm
Demo Private Event

Jan 4th

Demo Private Event

4th January 2023, 7:00 pm - 10:00 pm
Design, code, market

Jan 4th

Design, code, market

4th January 2023, 7:30 pm - 10:30 pm
Monday Coffee Chat

Jan 10th

Monday Coffee Chat

10th January 2023, 9:30 am - 12:30 pm
Another Event

Jan 10th

Another Event

10th January 2023, 7:00 pm - 10:00 pm
Test Donation Event

Jan 11th

Test Donation Event

11th January 2023, 7:00 pm - 10:00 pm
Demo Private Event

Jan 11th

Demo Private Event

11th January 2023, 7:00 pm - 10:00 pm
Design, code, market

Jan 11th

Design, code, market

11th January 2023, 7:30 pm - 10:30 pm
Monday Coffee Chat

Jan 17th

Monday Coffee Chat

17th January 2023, 9:30 am - 12:30 pm
Another Event

Jan 17th

Another Event

17th January 2023, 7:00 pm - 10:00 pm
Test Donation Event

Jan 18th

Test Donation Event

18th January 2023, 7:00 pm - 10:00 pm
Demo Private Event

Jan 18th

Demo Private Event

18th January 2023, 7:00 pm - 10:00 pm
Design, code, market

Jan 18th

Design, code, market

18th January 2023, 7:30 pm - 10:30 pm
Monday Coffee Chat

Jan 24th

Monday Coffee Chat

24th January 2023, 9:30 am - 12:30 pm
Another Event

Jan 24th

Another Event

24th January 2023, 7:00 pm - 10:00 pm
Test Donation Event

Jan 25th

Test Donation Event

25th January 2023, 7:00 pm - 10:00 pm
Demo Private Event

Jan 25th

Demo Private Event

25th January 2023, 7:00 pm - 10:00 pm
Design, code, market

Jan 25th

Design, code, market

25th January 2023, 7:30 pm - 10:30 pm
Monday Coffee Chat

Jan 31st

Monday Coffee Chat

31st January 2023, 9:30 am - 12:30 pm
Another Event

Jan 31st

Another Event

31st January 2023, 7:00 pm - 10:00 pm
Test Donation Event

Feb 1st

Test Donation Event

1st February 2023, 7:00 pm - 10:00 pm
Demo Private Event

Feb 1st

Demo Private Event

1st February 2023, 7:00 pm - 10:00 pm
Design, code, market

Feb 1st

Design, code, market

1st February 2023, 7:30 pm - 10:30 pm
Monday Coffee Chat

Feb 7th

Monday Coffee Chat

7th February 2023, 9:30 am - 12:30 pm
Another Event

Feb 7th

Another Event

7th February 2023, 7:00 pm - 10:00 pm
Test Donation Event

Feb 8th

Test Donation Event

8th February 2023, 7:00 pm - 10:00 pm
Demo Private Event

Feb 8th

Demo Private Event

8th February 2023, 7:00 pm - 10:00 pm
Design, code, market

Feb 8th

Design, code, market

8th February 2023, 7:30 pm - 10:30 pm
Monday Coffee Chat

Feb 14th

Monday Coffee Chat

14th February 2023, 9:30 am - 12:30 pm
Another Event

Feb 14th

Another Event

14th February 2023, 7:00 pm - 10:00 pm
Test Donation Event

Feb 15th

Test Donation Event

15th February 2023, 7:00 pm - 10:00 pm
Demo Private Event

Feb 15th

Demo Private Event

15th February 2023, 7:00 pm - 10:00 pm
Design, code, market

Feb 15th

Design, code, market

15th February 2023, 7:30 pm - 10:30 pm
Monday Coffee Chat

Feb 21st

Monday Coffee Chat

21st February 2023, 9:30 am - 12:30 pm
Another Event

Feb 21st

Another Event

21st February 2023, 7:00 pm - 10:00 pm
Test Donation Event

Feb 22nd

Test Donation Event

22nd February 2023, 7:00 pm - 10:00 pm
Demo Private Event

Feb 22nd

Demo Private Event

22nd February 2023, 7:00 pm - 10:00 pm
Design, code, market

Feb 22nd

Design, code, market

22nd February 2023, 7:30 pm - 10:30 pm
Monday Coffee Chat

Feb 28th

Monday Coffee Chat

28th February 2023, 9:30 am - 12:30 pm
Another Event

Feb 28th

Another Event

28th February 2023, 7:00 pm - 10:00 pm
Test Donation Event

Mar 1st

Test Donation Event

1st March 2023, 7:00 pm - 10:00 pm
Demo Private Event

Mar 1st

Demo Private Event

1st March 2023, 7:00 pm - 10:00 pm
Design, code, market

Mar 1st

Design, code, market

1st March 2023, 7:30 pm - 10:30 pm
Monday Coffee Chat

Mar 7th

Monday Coffee Chat

7th March 2023, 9:30 am - 12:30 pm
Another Event

Mar 7th

Another Event

7th March 2023, 7:00 pm - 10:00 pm
Test Donation Event

Mar 8th

Test Donation Event

8th March 2023, 7:00 pm - 10:00 pm
Demo Private Event

Mar 8th

Demo Private Event

8th March 2023, 7:00 pm - 10:00 pm
Design, code, market

Mar 8th

Design, code, market

8th March 2023, 7:30 pm - 10:30 pm
Monday Coffee Chat

Mar 14th

Monday Coffee Chat

14th March 2023, 9:30 am - 12:30 pm
Another Event

Mar 14th

Another Event

14th March 2023, 7:00 pm - 10:00 pm
Test Donation Event

Mar 15th

Test Donation Event

15th March 2023, 7:00 pm - 10:00 pm
Demo Private Event

Mar 15th

Demo Private Event

15th March 2023, 7:00 pm - 10:00 pm
Design, code, market

Mar 15th

Design, code, market

15th March 2023, 7:30 pm - 10:30 pm
Monday Coffee Chat

Mar 21st

Monday Coffee Chat

21st March 2023, 9:30 am - 12:30 pm
Another Event

Mar 21st

Another Event

21st March 2023, 7:00 pm - 10:00 pm
Test Donation Event

Mar 22nd

Test Donation Event

22nd March 2023, 7:00 pm - 10:00 pm
Demo Private Event

Mar 22nd

Demo Private Event

22nd March 2023, 7:00 pm - 10:00 pm
Design, code, market

Mar 22nd

Design, code, market

22nd March 2023, 7:30 pm - 10:30 pm
Monday Coffee Chat

Mar 28th

Monday Coffee Chat

28th March 2023, 9:30 am - 12:30 pm
Another Event

Mar 28th

Another Event

28th March 2023, 7:00 pm - 10:00 pm
Demo Private Event

Mar 29th

Demo Private Event

29th March 2023, 7:00 pm - 10:00 pm
Test Donation Event

Mar 29th

Test Donation Event

29th March 2023, 7:00 pm - 10:00 pm
Design, code, market

Mar 29th

Design, code, market

29th March 2023, 7:30 pm - 10:30 pm
Monday Coffee Chat

Apr 4th

Monday Coffee Chat

4th April 2023, 9:30 am - 12:30 pm
Another Event

Apr 4th

Another Event

4th April 2023, 7:00 pm - 10:00 pm
Test Donation Event

Apr 5th

Test Donation Event

5th April 2023, 7:00 pm - 10:00 pm
Demo Private Event

Apr 5th

Demo Private Event

5th April 2023, 7:00 pm - 10:00 pm
Design, code, market

Apr 5th

Design, code, market

5th April 2023, 7:30 pm - 10:30 pm
Another Event

Apr 11th

Another Event

11th April 2023, 7:00 pm - 10:00 pm
Test Donation Event

Apr 12th

Test Donation Event

12th April 2023, 7:00 pm - 10:00 pm
Demo Private Event

Apr 12th

Demo Private Event

12th April 2023, 7:00 pm - 10:00 pm
Another Event

Apr 18th

Another Event

18th April 2023, 7:00 pm - 10:00 pm
Test Donation Event

Apr 19th

Test Donation Event

19th April 2023, 7:00 pm - 10:00 pm
Demo Private Event

Apr 19th

Demo Private Event

19th April 2023, 7:00 pm - 10:00 pm
Another Event

Apr 25th

Another Event

25th April 2023, 7:00 pm - 10:00 pm
Test Donation Event

Apr 26th

Test Donation Event

26th April 2023, 7:00 pm - 10:00 pm
Demo Private Event

Apr 26th

Demo Private Event

26th April 2023, 7:00 pm - 10:00 pm
Another Event

May 2nd

Another Event

2nd May 2023, 7:00 pm - 10:00 pm
Test Donation Event

May 3rd

Test Donation Event

3rd May 2023, 7:00 pm - 10:00 pm
Demo Private Event

May 3rd

Demo Private Event

3rd May 2023, 7:00 pm - 10:00 pm
Another Event

May 9th

Another Event

9th May 2023, 7:00 pm - 10:00 pm
Test Donation Event

May 10th

Test Donation Event

10th May 2023, 7:00 pm - 10:00 pm
Demo Private Event

May 10th

Demo Private Event

10th May 2023, 7:00 pm - 10:00 pm
Another Event

May 16th

Another Event

16th May 2023, 7:00 pm - 10:00 pm
Test Donation Event

May 17th

Test Donation Event

17th May 2023, 7:00 pm - 10:00 pm
Demo Private Event

May 17th

Demo Private Event

17th May 2023, 7:00 pm - 10:00 pm
Another Event

May 23rd

Another Event

23rd May 2023, 7:00 pm - 10:00 pm
Test Donation Event

May 24th

Test Donation Event

24th May 2023, 7:00 pm - 10:00 pm
Demo Private Event

May 24th

Demo Private Event

24th May 2023, 7:00 pm - 10:00 pm
Another Event

May 30th

Another Event

30th May 2023, 7:00 pm - 10:00 pm
Test Donation Event

May 31st

Test Donation Event

31st May 2023, 7:00 pm - 10:00 pm
Demo Private Event

May 31st

Demo Private Event

31st May 2023, 7:00 pm - 10:00 pm
Another Event

Jun 6th

Another Event

6th June 2023, 7:00 pm - 10:00 pm
Test Donation Event

Jun 7th

Test Donation Event

7th June 2023, 7:00 pm - 10:00 pm
Demo Private Event

Jun 7th

Demo Private Event

7th June 2023, 7:00 pm - 10:00 pm
Another Event

Jun 13th

Another Event

13th June 2023, 7:00 pm - 10:00 pm
Test Donation Event

Jun 14th

Test Donation Event

14th June 2023, 7:00 pm - 10:00 pm
Demo Private Event

Jun 14th

Demo Private Event

14th June 2023, 7:00 pm - 10:00 pm
Another Event

Jun 20th

Another Event

20th June 2023, 7:00 pm - 10:00 pm
Test Donation Event

Jun 21st

Test Donation Event

21st June 2023, 7:00 pm - 10:00 pm
Demo Private Event

Jun 21st

Demo Private Event

21st June 2023, 7:00 pm - 10:00 pm
Another Event

Jun 27th

Another Event

27th June 2023, 7:00 pm - 10:00 pm
Test Donation Event

Jun 28th

Test Donation Event

28th June 2023, 7:00 pm - 10:00 pm
Demo Private Event

Jun 28th

Demo Private Event

28th June 2023, 7:00 pm - 10:00 pm
Another Event

Jul 4th

Another Event

4th July 2023, 7:00 pm - 10:00 pm
Demo Private Event

Jul 5th

Demo Private Event

5th July 2023, 7:00 pm - 10:00 pm
Another Event

Jul 11th

Another Event

11th July 2023, 7:00 pm - 10:00 pm
Demo Private Event

Jul 12th

Demo Private Event

12th July 2023, 7:00 pm - 10:00 pm
Another Event

Jul 18th

Another Event

18th July 2023, 7:00 pm - 10:00 pm
Demo Private Event

Jul 19th

Demo Private Event

19th July 2023, 7:00 pm - 10:00 pm
Another Event

Jul 25th

Another Event

25th July 2023, 7:00 pm - 10:00 pm
Demo Private Event

Jul 26th

Demo Private Event

26th July 2023, 7:00 pm - 10:00 pm
Another Event

Aug 1st

Another Event

1st August 2023, 7:00 pm - 10:00 pm
Demo Private Event

Aug 2nd

Demo Private Event

2nd August 2023, 7:00 pm - 10:00 pm
Another Event

Aug 8th

Another Event

8th August 2023, 7:00 pm - 10:00 pm
Demo Private Event

Aug 9th

Demo Private Event

9th August 2023, 7:00 pm - 10:00 pm
Another Event

Aug 15th

Another Event

15th August 2023, 7:00 pm - 10:00 pm
Demo Private Event

Aug 16th

Demo Private Event

16th August 2023, 7:00 pm - 10:00 pm
Another Event

Aug 22nd

Another Event

22nd August 2023, 7:00 pm - 10:00 pm
Demo Private Event

Aug 23rd

Demo Private Event

23rd August 2023, 7:00 pm - 10:00 pm
Another Event

Aug 29th

Another Event

29th August 2023, 7:00 pm - 10:00 pm
Demo Private Event

Aug 30th

Demo Private Event

30th August 2023, 7:00 pm - 10:00 pm
Another Event

Sep 5th

Another Event

5th September 2023, 7:00 pm - 10:00 pm
Demo Private Event

Sep 6th

Demo Private Event

6th September 2023, 7:00 pm - 10:00 pm
Another Event

Sep 12th

Another Event

12th September 2023, 7:00 pm - 10:00 pm
Demo Private Event

Sep 13th

Demo Private Event

13th September 2023, 7:00 pm - 10:00 pm
Another Event

Sep 19th

Another Event

19th September 2023, 7:00 pm - 10:00 pm
Demo Private Event

Sep 20th

Demo Private Event

20th September 2023, 7:00 pm - 10:00 pm
Another Event

Sep 26th

Another Event

26th September 2023, 7:00 pm - 10:00 pm
Demo Private Event

Sep 27th

Demo Private Event

27th September 2023, 7:00 pm - 10:00 pm
Another Event

Oct 3rd

Another Event

3rd October 2023, 7:00 pm - 10:00 pm
Another Event

Oct 10th

Another Event

10th October 2023, 7:00 pm - 10:00 pm
Another Event

Oct 17th

Another Event

17th October 2023, 7:00 pm - 10:00 pm
Another Event

Oct 24th

Another Event

24th October 2023, 7:00 pm - 10:00 pm
Another Event

Oct 31st

Another Event

31st October 2023, 7:00 pm - 10:00 pm
Another Event

Nov 7th

Another Event

7th November 2023, 7:00 pm - 10:00 pm
Another Event

Nov 14th

Another Event

14th November 2023, 7:00 pm - 10:00 pm
Another Event

Nov 21st

Another Event

21st November 2023, 7:00 pm - 10:00 pm
Another Event

Nov 28th

Another Event

28th November 2023, 7:00 pm - 10:00 pm
Another Event

Dec 5th

Another Event

5th December 2023, 7:00 pm - 10:00 pm
Another Event

Dec 12th

Another Event

12th December 2023, 7:00 pm - 10:00 pm
Another Event

Dec 19th

Another Event

19th December 2023, 7:00 pm - 10:00 pm
Another Event

Dec 26th

Another Event

26th December 2023, 7:00 pm - 10:00 pm
Another Event

Jan 2nd

Another Event

2nd January 2024, 7:00 pm - 10:00 pm
Another Event

Jan 9th

Another Event

9th January 2024, 7:00 pm - 10:00 pm
Another Event

Jan 16th

Another Event

16th January 2024, 7:00 pm - 10:00 pm
Another Event

Jan 23rd

Another Event

23rd January 2024, 7:00 pm - 10:00 pm
Another Event

Jan 30th

Another Event

30th January 2024, 7:00 pm - 10:00 pm
Another Event

Feb 6th

Another Event

6th February 2024, 7:00 pm - 10:00 pm
Another Event

Feb 13th

Another Event

13th February 2024, 7:00 pm - 10:00 pm
Another Event

Feb 20th

Another Event

20th February 2024, 7:00 pm - 10:00 pm
Another Event

Feb 27th

Another Event

27th February 2024, 7:00 pm - 10:00 pm
Another Event

Mar 5th

Another Event

5th March 2024, 7:00 pm - 10:00 pm
Another Event

Mar 12th

Another Event

12th March 2024, 7:00 pm - 10:00 pm
Another Event

Mar 19th

Another Event

19th March 2024, 7:00 pm - 10:00 pm
Another Event

Mar 26th

Another Event

26th March 2024, 7:00 pm - 10:00 pm
Another Event

Apr 2nd

Another Event

2nd April 2024, 7:00 pm - 10:00 pm
Another Event

Apr 9th

Another Event

9th April 2024, 7:00 pm - 10:00 pm
Another Event

Apr 16th

Another Event

16th April 2024, 7:00 pm - 10:00 pm
Another Event

Apr 23rd

Another Event

23rd April 2024, 7:00 pm - 10:00 pm
Another Event

Apr 30th

Another Event

30th April 2024, 7:00 pm - 10:00 pm
Another Event

May 7th

Another Event

7th May 2024, 7:00 pm - 10:00 pm
Another Event

May 14th

Another Event

14th May 2024, 7:00 pm - 10:00 pm
Another Event

May 21st

Another Event

21st May 2024, 7:00 pm - 10:00 pm

Filed Under: Uncategorised

  • Go to page 1
  • Go to page 2
  • Go to Next Page »

Primary Sidebar

Upcoming Events

  • Monday Coffee Chat

    Monday Coffee Chat

    17th May 2022, 9:30 am - 12:30 pm
    Book Now »
  • Another Event

    Another Event

    17th May 2022, 7:00 pm - 10:00 pm
    Book Now »
  • Test Donation Event

    Test Donation Event

    18th May 2022, 7:00 pm - 10:00 pm
    Book Now »
  • Design, code, market

    Design, code, market

    18th May 2022, 7:30 pm - 10:30 pm
    Book Now »
  • Monday Coffee Chat

    Monday Coffee Chat

    24th May 2022, 9:30 am - 12:30 pm
    Book Now »

Footer

Upcoming Events

  • Monday Coffee Chat

    Monday Coffee Chat

    17th May 2022, 9:30 am - 12:30 pm
  • Another Event

    Another Event

    17th May 2022, 7:00 pm - 10:00 pm
  • Test Donation Event

    Test Donation Event

    18th May 2022, 7:00 pm - 10:00 pm
  • Design, code, market

    Design, code, market

    18th May 2022, 7:30 pm - 10:30 pm
  • Monday Coffee Chat

    Monday Coffee Chat

    24th May 2022, 9:30 am - 12:30 pm

Copyright © 2022 · Genesis Sample on Genesis Framework · WordPress · Log in