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

Support archive

Error searching Low Events with Low Search

wbj 9 Aug 2018 01:52 question, complete

I am get this error on my search results page when searching for low events.

"Unable to load the requested file: helpers/low_events_helper.php"

When I uncheck Low Events in Low Search settings I no longer get the error and I can search for keywords but I cannot search Low Events.

I am using the latest version of EE, Low Search and Low Events.

Replies

  1. Low 9 Aug 2018 09:00

    Okay, try this. Open up /low_events/filters/low_events/lsf.low_events.php and look up line #108, which reads:

    $Events = new Low_events();


    Ahd change that to:

    ee()->load->add_package_path(PATH_THIRD.'low_events'); 
    $Events = new Low_events();
    ee()->load->remove_package_path(PATH_THIRD.'low_events');


    ...does that help?

  2. wbj 9 Aug 2018 23:06

    Yes, that fixed it. Thanks so much.