by Christoph Vielgrader
5 (9 reviews)
Relevanssi Live Ajax Search
Template powered live search for any WordPress theme. Compatible with Relevanssi search!
Compatible with WP 6.9.4
v2.5
Current Version v2.5
Updated 2 months ago
Last Update on 24 Jan, 2026
Refreshed 6 hours ago
Last Refreshed on
Rank
#2,904
—
No change
Active Installs
6K+
-7.4%
KW Avg Position
57
-0.3 better
Downloads
81.7K
+16 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(9 reviews)
Next Milestone 7K
6K+
7K+
66
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 257 more installs to reach 7K+
Rank Changes
Current
#2,904
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
9 reviews
Overall
100%
5
9
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 3 of 3| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| ajax | 28 | — | Tag | 1 day ago |
| live | 60 | — | Tag | 1 day ago |
| search | 83 | — | Tag | 1 day ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 2.5
- Last Updated
- Jan 24, 2026
- Requires WP
- 4.9+
- Tested Up To
- 6.9.4
- PHP Version
- 7.0 or higher
- Author
- Christoph Vielgrader
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 9
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,714
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#953
InfiniteWP Client
200K+ installs
#253
Optimole – Optimize Images in Real Time
200K+ installs
#254
Firelight Lightbox
200K+ installs
#257
Frequently Asked Questions
Common questions about Relevanssi Live Ajax Search
Relevanssi Live Ajax Search uses a template loader, making it easy to replace the search results. There is a templates folder in the plugin folder, which includes search-results.php. This file is the template used to output search results. To customize the search results: Create a folder called relevanssi-live-ajax-search in your theme directory. Copy the search-results.php file into the new folder. Relevanssi Live Ajax Search will now use that file to show the results. If you want to override the default CSS styles, you can remove them this way: add_filter( 'relevanssi_live_search_base_styles', '__return_false' ); This filter hook removes the base styles that control the live search result position. wp_dequeue_style( 'relevanssi-live-search' ); This removes the actual search result styles. I'm using Astra, Storefront, or Divi, and this plugin doesn't work It does, Astra search form is just designed in a way that hides the search results. You can find solutions in the plugin documentation. The easiest solution is adding this to your theme functions.php: add_filter( 'relevanssi_live_search_add_result_div', '__return_false' ); I want to change the number of results shown There's a filter for that! Add this to your theme functions.php or in a code snippet: add_filter( 'relevanssi_live_search_posts_per_page', function() { return 10; } ); This will show 10 results. You can adjust the number as you wish. I'm using WPML and get no results! For some reason, the combination of Relevanssi Live Ajax Search, Relevanssi and WPML leads to problems. To solve this problem, use the WP_Query mode of fetching the results. To activate the mode, add this to your theme functions.php: add_filter( 'relevanssi_live_search_mode', function() { return 'wp_query'; } ); This will make Relevanssi Live Ajax Search use a different method of fetching the results. This method is compatible with WPML. This method uses the search-results-query.php template instead of the default search-results.php template in Relevanssi Live Ajax Search, so take note if you want to customize the template to use the right base template for your customization.