Site logo

Archived topic

Replacing navigation bar search with Ajax search

3 replies · Started by madmanweb on September 11, 2020

Viewing posts 1–4 of 4

Hi.

I have an Ajax search plugin that I want to use for my site. It's called Ajax Search Lite - https://wordpress.org/plugins/ajax-search-lite/

It gives me the option of either a shortcode or this code to insert into the theme file:

<?php echo do_shortcode('[wpdreams_ajaxsearchlite]'); ?>

Any ideas on how to go about replacing the navigation search with this?

Hi,

You can try this code:

add_filter( 'generate_navigation_search_output', function() {
    return sprintf(
        '<div class="navigation-search">%s</div>',
        do_shortcode( '[your-shortcode]' )
    );
} );

Let us know if it works for you.

Yes, that did it, thanks.

Nice one!

No problem. Always glad to be of any help.:)

This archived topic is closed to new replies.