Limited-Time Sale, up to 30% off! Go Pro, offer ends in | see announcement

Preview of Events Manager 5.5 – Dev Version Available!

Posted on July 18, 2013

This page is left as-is for posterity, but for an updated summary of what changed please refer to the official 5.5 release post.

Version 5.5 is around the corner here with a few great new features along with some important improvements. These improvements are aimed at simplifying the overall foundation of the plugin which will make things easier to extend in a more standardized fashion.

It is inevitable that many of these improvements have required changes to our template files. We try not to modify these template files in order to make them more upgrade-safe, however it sometimes gets to a point where changes are necessary to push the plugin to new levels.

Update (2013-08-07) : We’ve been making some more changes and 5.4.4.3 was released after this article. This page has been updated with changes from 5.4.4.3 in this color.

Due to these changes, we’re going to hold off on releasing a stable version until at least the 29th of July  at least 12th of August in order to give people a chance to test out and migrate their own overridden templates. Whilst we’ve spent countless hours testing tons of settings combinations, we’d appreciate anyone willing to test this out and letting us know if they spot any problems on the forums (please make sure you let us know you’re using the dev version).

This post will also serve as a summary of what to expect, and may change during this grace period as we are still making changes to the core code.

New Features in 5.5

New Ticket Restriction Options and Admin User Interface

event-bookings-admin-new-ticket

We’ve added some cool new restriction options to individual tickets, which include:

  • Restriction of ticket availability to specific user roles
  • Tickets can be restricted to only Guests (non-logged-in users)
  • Tickets can now be made available between specific times within a day
  • You can now put a cap on how many spaces can be made in a single booking

These three options provide a new slew of possibilities. Most notably, sites using Events Manager in combination with membership plugins like s2Member can now offer discounted ticket prices to members and further differentiate those prices by membership level!

event-bookings-admin-ticket-advanced

Alongside these new features (and partially due to these new features), we’ve revamped part of the ticket creation interface to remove dependency on the jQuery UI dialog script that ships with WordPress, which sometimes created conflicts with other themes and plugins (even though in theory we should be allowed to make use of this library). Instead, we now use inline forms which will allow us and you to add more features to these ticket options if need be.

New Search Form

We’ve revamped the search form so that it now works for location searches, makes use of AJAX features, and comes with a fancy new style and layout! Here’s a sneak peak, which you can also check out on our demo site:

events-search-form

You can still configure the form to include/exclude fields as before, and even more in your settings page. If you still prefer the old style, or you have made customizations to the search forms in the past, we still provide backward compatibility.

Moreover, you can now use shortcodes and provide arguments to build your own custom form outside of the Events page which can also display results without skipping to the main events page!

GeoLocation : Search near a specific location

You’ll notice in the screenshot above that we now allow you to search near a specific location. We’ve added new search attributes near (coordinates), near_unit (km or mi) and near_distance (search radius) which you can use within your shortcode or template tags.

search-form-autocomplete

Alongside this capability, we’re making use of the excellent and free GeoNames services, which adds a handy little auto-completer to the search form above. You’ll need to create an account with them and enter your username in our new Settings > General > Geo API section. There is a limit of 30,000 requests per day, which should suffice for most people but on sites with lots of traffic you’ll be able to buy credits from GeoNames and have access to their premium webservice features.

 

We’ve decided to switch from GeoNames to Google, mostly because it did not require API keys or imposed limits which avoids the need for a proxy on your server and also produces significantly faster results. The result – super fast and super accurate auto-completion of search results. Test it out!

This is only the first step in Geo searching capabilities and the work done here has opened our eyes to lots of potential directions we can take with this.  Therefore, we’re going to keep this feature in Beta for a while as it’ll probably change in various ways to provide more improvements and reliability with overall geo-searching.

Location Searches

You can now add the same search form above to your locations list page by visiting Settings > Pages > Location List/Archives and enabling the search form. Additionally, you can also add location search forms to your site by using shortcode [location_search_form]

AJAX searches and pagination!

Add this line to your wp-config.php file:

define(‘EM_AJAX’,true);

And power the search form and pagination with AJAX, preventing reloading of the whole page each time a search or page change is done! Additionally, you can enable ajax in individual event/location/category/tag lists or location/event search forms by supplying ajax=”1″ into the shortcode.

Custom Styling Flags

The search form is the first part of the plugin that’ll see a little styling love in the coming months. One of the great things about Events Manager is that it imposes minimal CSS rules and uses clean HTML structures to enable designers the possibility of easily overriding our styles as well as enabling the plugin to integrate with different theme style structures.

5.4.4.3 had some very minor changes that aren’t mentioned here as they won’t affect functionality in any way, the relevant/important ones are highlighted in this text color.

However, in many cases (especially for the CSS/HTML-challenged users among us) it’d be great to have a default style that prevents themes from adding unwanted padding and other rules that result in unsightly content.

Therefore, we’ve added various styling options that will add CSS classes to various elements on the website which we will eventually make use of to add some more styling. We’ll still strive to maintain a ‘minimalist’ approach so that the interface remains simple and clean, but hopefully will provide a more unified style.

We’re intending on adding some basic styles to:

  • Event/Location admin pages
  • Booking admin pages
  • Events/Locations/Categories/Tags list pages
  • Event booking forms

These styling option will be located in the Settings > General > Styling Options section, and whilst still don’t have associated CSS rules, they’re there so you know about it.

Improved Calendar Performance

Okay, so this isn’t really a feature, but it’s worth a quick mention. Users running hundreds and thousands of events per month will have noticed very sluggish calendars. We’ve made some significant improvements to the overall logic used to obtain information for that calendar month, and you should notice significant improvements when loading these pages and also switching from month to month.

Changes to Templates

We’ve taken as much care as possible to make these backwards compatible so if you don’t change your templates you shouldn’t experience any broken pages, although you’ll be missing out on our new features!

We hope that this won’t include more changes to the templates, we’ve held off on publishing a dev version until now so we had time to make those changes in one go.

buddypress/my-bookings.php

Reduced to one line, which includes the em_bookings_admin() function

forms/bookingform/tickets-list.php

Now uses the function $EM_Ticket->is_displayable() to determine whether or not to show a ticket (which is takes the new ticket restrictions above into account).

forms/event-editor.php

Changed h4 titles into h3 titles, removed the code at the bottom of the file which includes the code for the ticket dialog box (which is now deprecated)

forms/event/location.php

removed google map code and loading it from a template file, added classes to table rows

forms/event/bookings.php (major change)

  • Converted bolded titles into h4 tags,
  • added maximum spaces per booking option
  • changed overall structure of multiple tickets to accommodate the new inline ticket editor
  • fixed a potential XSS vulnerability

forms/event/recurring-when.php

fixed minor php warning triggered under certain circumstances

forms/location-editor.php

Converted h4 titles into h3 titles, added class names to each section, added escaping/sanitization to various output

forms/location/where.php

removed google map code and loading it from a template file, added classes to table rows

forms/ticket-form.php and forms/tickets-form.php

Both are now deprecated and load the file forms/event/bookings-ticket-form.php instead

placeholders/bookingform.php

Added optional class flag for future styling possibilities

templates/calendar-full.php

Removed looping of events which prevent more than the maximum number of events per day to be listed, now displays all events in the day (which already contains the maximum number of events) and  shows a more linked based on a count of events.

templates/events-search.php (major changes)

  • restructured HTML
  • individual search fields are now split up as individual templates in the templates/search folder
  • display of fields controlled by arguments passed on to template via $args
  • various fields into ‘advanced’ section which can be collapsed by default to save space
  • added div with em-search-ajax class so if $arg[‘ajax’] is passed on results are loaded via AJAX without sending users to events page
  • minor change between 5.4.4.2 and 5.4.4.3 – changed the new search button element to be IE7 compatible

templates/*-list.php files

These files have been drastically simplified so that they only contain 4 lines! These include $args filter for you to hook into, a wrapping div element (for our custom styling flags above), and the relevant output function such as EM_Events::output(). We’ll include events-list.php with it’s own section:

templates/events-list.php

Aside from removing extra unnecessary code that should be handled by the core plugin and not templates, we’ve made some significant changes to this template. It now consists of 4 lines like the other list.php templates!

  • removed the inclusion of the search form template (now included separately)
    • overridden templates that include the search form the old way shouldn’t have a problem, we changed the name of the option which includes search forms and removed the old one.
  • moved grouped event lists out of this template into the new templates/events-list-grouped.php template

templates/map-global.php

moved div.em-locations-map-coords into the map container div.em-location-map-container

templates/search/geo.php

rewritten to accomodate the new Google autocompleter

Let us know what you think!

Drop us a line on the 5.5 release post. If you have problems with the new update or spot any bugs, please use our pro or free forums instead and mention you’re running the dev version so we can help you debug it.

8 Comments

  1. moijoune says:

    Hi! First of all, THANK YOU VERY MUCH FOR THIS *WONDREFUL* PLUGIN! I have been using quite a lot! However, there are a couple of things I would have liked to be able to achieve with it but, think, I cannot – at least at the moment…:)

    Like…

    1. Could it be possible to have a map of all events in a particular category?

    2. Could it be possible to have an index of locations? Like click-able links of A-C, D-F,…etc. or anything else for that matter?

    3. If a single event happens across several locations, could it be possible to add all those locations to the map of the event?

    These are the things I have thought about and *please* excuse me if I haven’t really realized how to deal with them in the current version of events-manager!

    In any case, again THANKS FOR THIS *GREAT* plugin and keep up the good work!!!!

    All the absolutely very best!

    • marcus says:

      Thanks for the kind words Moijoune!

      1. is already available. You can already show a map of events (via locations) per category, such as with the locations_map shortcode.

      2 and 3 are not though, sorry!

  2. Joanina says:

    As one of this challenged users I can not express my gratitude for mentioned changes. I can’t wait to try this out. I already tried new search for – it is just AWESOME.

    Great job.

  3. Elias says:

    Hello, I would like to know if this plugin allow to upload the price for the events. For example “70 USD” (only show price-no ticket reservation what I need…) Thanks

    • marcus says:

      not sure I understand what you want exactly, but if it’s just to display the price, and no booking form then certainly that can be done. If you’re stuck please ask on our forums and we can point you in the right direction there.

  4. paul says:

    with Version 5.5 changes i have made to some files in theme/plugins/events-manager, will these still be ok and if after installing any issues can it be rolled back to older version

    • marcus says:

      It really depends on what files you’ve changed, if you look above you’ll see the list of what has changed.

      You should be able to roll back to 5.4.4 without a problem.



Interested in Events Manager?

Sign up to our newsletter, receive a free add-on and an additional 10% discount for Pro!

You will receive a confirmation email which you must click on, you will then be sent another welcome email with links to your discount and free add-on.