Forums Forums Search & Filter Pro result with a search bar

Viewing 10 posts - 1 through 10 (of 10 total)
  • Anonymous
    #143888

    I used the search and filter,

    but after submit, the result page just show all result with a big search bar on the top

    How Can i get rid of the search bar? (I have already have a search bar on the header of my page)

    Please check the page here

    http://gowatch.asia/site1/?sfid=684&_sft_local_food=street-food

    Trevor
    #143921

    That horizontal search bar is from your theme or another plugin.

    The header search and this extra one both had the same start to their ID’s:

    id="header-form-search....

    Where the bit following is a random sequence of characters. It looks like they are being inserted with javascript.

    You need to identify what javascript file is doing this, and who the author is, and then find out how to disable it.

    Anonymous
    #143935
    This reply has been marked as private.
    Trevor
    #144045

    This line here may be responsible for the extra search box. Do NOT edit your theme search.php, but instead make a copy and place/edit that inside your child theme folder (you must be using a child theme – you can easily make one using a child theme making plugin by Orbisius – make it and remove the plugin).

    <?php echo airkit_Compilator::searchbox_element( array( 'style' => 'input' ) ); ?>
    
    Anonymous
    #145613

    Hi I got one more question here

    May I know how to change the font size and style of the filter

    as you can see here http://gowatch.asia/site1/?sfid=684

    the font are all bold and the size is very big, can I costume it ?

    Thanks a lot !

    Trevor
    #145640

    To reset the font to normal (it was made by bold by your theme), use this Custom CSS:

    .searchandfilter label {
      font-weight: 400;
    }
    Anonymous
    #145647

    Where I need to add it ?

    Search result php ?

    Anonymous
    #145649

    Thanks so much Trevor

    Trevor
    #145655

    This is resolved now? You found where to add it? Most themes have a custom css panel or function.

    Anonymous
    #146021

    Thanks a lot !! Brilliant !!

Viewing 10 posts - 1 through 10 (of 10 total)