grav-plugin-simplesearch
grav-plugin-simplesearch copied to clipboard
Grav SimpleSearch Plugin
Is it possible for Simple Search to retrieve results from pages that are generated solely from a Twig template?
I'd like to exclude pages from the search result by preferably by taxonomy, or per page, e.g.: simplesearch: display: false
café does not match cafe. If the search string has an accent but the target doesn't (café to cafe), or the other way around (cafe to café), there is no...
Hi, I have a simple blog page, where I have added a simplesearch header as described on the doc: ``` title: Blog content: items: '@self.children' limit: 5 order: by: date...
I did notice that if I send a malicious payload on the query like: /search/query:%22ony=()%20onmouseover=prompt(document.location)%3E and query twig variable is printed on the page, it can be exploited, example: ```...
Now phrases with `latin ext` characters are not equal to phrases where special characters are omitted. As for example, now the phrase `žolė` is not equal to `zole` and it...
The form allows you to submit fewer characters than the set minimum in the configuration. This is probably related to this improvement: https://github.com/getgrav/grav-plugin-simplesearch/pull/165.
I'd like to be able to display a custom message when there is no search-result Something like (simplesearch_results.html.twig) ``` {% if query %} {% set count = search_results ? search_results.count...
I have integrated the search bar with glass button into my custom theme and applied the following config to /user/config/plugins/simplesearch.yaml: ``` enabled: true built_in_css: true built_in_js: true display_button: true min_query_length:...
I want to change the 404 error page to include either the results from a simplesearch or the simple search form pre-populated with the offending url. I recently "fixed" the...