• Resolved Houdini

    (@romariokg)


    Hello. I had a task to remove the pop-up sentence “ui-autocomplete-loading” from a keyword search. how can this be done?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Ali Akbar Reyad

    (@alireyad)

    Hi,
    Sorry, where you got it? Could you share any screenshot?

    Thank you

    Thread Starter Houdini

    (@romariokg)

    OK. I need to disable this dropdown effect when typing in search.

    https://disk.yandex.ru/i/e3FkIZ-0etS2lw

    Plugin Support Ali Akbar Reyad

    (@alireyad)

    Okay, add following code in child theme functions.php file

    add_action('init',function () {
    remove_action( 'wp_ajax_rtcl_inline_search_autocomplete', [ Rtcl\Controllers\Ajax\InlineSearchAjax::class, 'rtcl_inline_search_autocomplete' ] );
    remove_action( 'wp_ajax_nopriv_rtcl_inline_search_autocomplete', [ Rtcl\Controllers\Ajax\InlineSearchAjax::class, 'rtcl_inline_search_autocomplete' ] );
    });

    Thank you

    Thread Starter Houdini

    (@romariokg)

    Thanks, it worked!

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.