Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author TC.K

    (@wp_dummy)

    You can try using jquery to remove it. Eg

    <script>jQuery(document).ready(function($) {
    $('.checkall').parents('label').remove();
    })</script>

    Hi, Firstly great plugin! Secondly, I also need to do this, but I cannot get your solution above to work. Where should we place that code? Ive tried lots of different places but nothing removes the all categories option.

    Thank you in advance

    Jenni

    I was able to accomplish this on a single radio button “all” that I wanted to hide.

    <script>
    $( document ).ready(function() {
      $('input[type="radio"][value="wqsftaxoall"]').css('display','none');
    });
    </script>

    Hi Thad, thanks for this. I have tried this but it didn’t work. Where did you put this code?

    Plugin Author TC.K

    (@wp_dummy)

    @jennicabrelli and @thad, your theme’s footer or header

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How is it possible to avoid the Search All’ is closed to new replies.