PHPackages                             10up/elasticpress-autosuggest - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Search &amp; Filtering](/categories/search)
4. /
5. 10up/elasticpress-autosuggest

AbandonedArchivedWordpress-plugin[Search &amp; Filtering](/categories/search)

10up/elasticpress-autosuggest
=============================

Extend ElasticPress's search inputs to display search suggestions

261377[8 issues](https://github.com/10up/elasticpress-autosuggest/issues)JavaScript

Since Mar 15Pushed 8y ago10 watchersCompare

[ Source](https://github.com/10up/elasticpress-autosuggest)[ Packagist](https://packagist.org/packages/10up/elasticpress-autosuggest)[ RSS](/packages/10up-elasticpress-autosuggest/feed)WikiDiscussions master Synced 3w ago

READMEChangelogDependenciesVersions (1)Used By (0)

ElasticPress Autosuggest
========================

[](#elasticpress-autosuggest)

*Warning: This plugin exposes your Elasticsearch publically. If not properly secured and used in conjunction with the Protected Content function, private content can be leaked publically.*

Extend ElasticPress's search inputs to display search suggestions

Setup
-----

[](#setup)

You need to add an endpoint to your nginx config, that forwards requests for `/es-search` to your Elasticsearch host. Here is an example server block with the required location block:

```
server {
    listen       80;

    server_name  example.com;

    # Elasticsearch endpoint
    location /es-search {

        # only allow things to hit the _autosuggest API
        # change the `_endpoint` to be whatever you'd like to restrict usage to
        location ~* (.*)_suggest$ {

            # only allow POST requests
            limit_except POST {
                deny all;
            }

            # Perform our request
            rewrite ^/es-search(.*) $1 break;
            proxy_set_header Host $host;

            # Use the URL of the server here
            proxy_pass http://192.168.50.4:9200;
        }

        return 403;
    }

    root         /srv/www/example.com;

    include      /etc/nginx/nginx-wp-common.conf;
}

```

Issues
------

[](#issues)

If you identify any errors or have an idea for improving the plugin, please [open an issue](https://github.com/10up/elasticpress-autosuggest/issues). We're excited to see what the community thinks of this project, and we would love your input!

###  Health Score

25

—

LowBetter than 36% of packages

Maintenance14

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 76.2% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/3358927?v=4)[10up](/maintainers/10up)[@10up](https://github.com/10up)

---

Top Contributors

[![tlovett1](https://avatars.githubusercontent.com/u/1844351?v=4)](https://github.com/tlovett1 "tlovett1 (16 commits)")[![cmmarslender](https://avatars.githubusercontent.com/u/1915905?v=4)](https://github.com/cmmarslender "cmmarslender (4 commits)")[![donaldG](https://avatars.githubusercontent.com/u/901161?v=4)](https://github.com/donaldG "donaldG (1 commits)")

### Embed Badge

![Health badge](/badges/10up-elasticpress-autosuggest/health.svg)

```
[![Health](https://phpackages.com/badges/10up-elasticpress-autosuggest/health.svg)](https://phpackages.com/packages/10up-elasticpress-autosuggest)
```

###  Alternatives

[awesome-nova/dependent-filter

Dependent filters for Laravel Nova

26190.2k](/packages/awesome-nova-dependent-filter)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
