All Low add-ons are now owned by EEHarbor. Read the blog post.
All add-ons

Low Events

Just $49.00 per license

Compatibility: EE2, EE3, EE4, EE5
Latest release: 2.1.0 (released 2017-12-05)
Licensing: Commercial License Agreement

Low Events & Low Search

Version 1.4+ of Low Events has a filter for Low Search 3.4+. You can search your events either by adding form fields to your Low Search Form tag or parameters to the Low Search Results tag. Use any of the parameters available in the Entries tag, prefixed with low_events:.

You can also order events without using any of the prefixed parameters, by setting the orderby parameter to either my_events_field:start or my_events_field:end.

Note that using any of the low_events: prefixes or orderby parameter with Low Search will limit search results to events only. Mixing events and non-events search results is not possible.

Search Form Example

{exp:low_search:form query="{segment_2}"}
  <fieldset>
    <input type="search" name="keywords" value="{low_search_keywords}" />

    <select name="low_events:date">
      <option value="upcoming">Select Month</option>
      {exp:low_events:archive events_field="event_dates" show_passed="no"}
        <option {if low_search_low_events:date == date_url} selected="selected"{/if}
          value="{date_url}">{month} {year}</option>
      {/exp:low_events:archive}
    </select>

    <button type="submit">Search</button>
  </fieldset>
{/exp:low_search:form}