Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1178778

    I want to disable ajax search automatic results please can you help me?

    #1178779

    i use the main bar seacrh menu but i want it not to show automatic results or maybe the results in other order

    #1179192

    Hi pabloeduardo,

    Please have a look at the following thread:

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1179253

    I guess he doesn’t want to have result suggestions under the search box.
    try this in child-theme functions.php

    add_action('avf_frontend_search_form_param', 'av_disable_ajax_search',9);
    function av_disable_ajax_search($params)
    {
      $params['ajax_disable'] = true;
      return $params;
    }
    #1179693

    Hi,

    Thanks for helping out @guenni007. Did you try that out and did you have any luck with it @pabloeduardo?

    Best regards,
    Rikard

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