getgrav / grav-plugin-simplesearch

Grav SimpleSearch Plugin
https://getgrav.org
MIT License
44 stars 55 forks source link

Feature request: redirect to last page if no result #137

Closed jimblue closed 6 years ago

jimblue commented 6 years ago

It would be better for UX if Grav redirect to last page if no result is found. Actually if nothing is found it display an empty page which is not really sexy...

jimblue commented 6 years ago

ok found a solution in Twig template:

{% if count == 0 %}
    redirect_me(home_url)
{% endif %}