Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter jdullas

    (@jdullas)

    I’m sorry, to clarify I meant I want to make the SUBMIT button disappear.

    Plugin Author joe_bopper

    (@joe_bopper)

    Hi jdullas,

    I assume the slug you’re referring to is the name of the WordPress event hook. Its called bop_nav_search_show_submit_button and to remove the submit box, you should use it like this:

    add_filter( 'bop_nav_search_show_submit_button', function($boolean){
      $boolean = false;
      return $boolean;
    });

    in your theme’s functions.php (or other similar location in the WordPress flow).

    At the moment (2016-04-14), there is no proper documentation for this plugin and so the best method to find the useful customisations is through the FAQs, support threads, and code itself (a ctrl-f for do_action and apply_filters will reveal them), I’m afraid.

    Cheers,
    Joe

    Plugin Author joe_bopper

    (@joe_bopper)

    I’m marking this topic as resolved. If this is not the case, please feel free to get back in touch.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Help with removing search box.’ is closed to new replies.