[Resolved] Search in Menu Bar for logged in users only?

Home Forums Support [Resolved] Search in Menu Bar for logged in users only?

Home Forums Support Search in Menu Bar for logged in users only?

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

    Hi,

    The search bar in the navigation is perfect, but is there a way I can only display it to logged in users?

    Reason being it has been used for spam searches, and that counts towards my allowance of the facility. So I only want it displayed for members.

    Thanks for any help

    #602899
    Tom
    Lead Developer
    Lead Developer

    Hi Michael,

    Try this function:

    add_action( 'wp', 'tu_disable_guest_nav_search' );
    function tu_disable_guest_nav_search() {
        if ( ! is_user_logged_in() ) {
            remove_filter( 'wp_nav_menu_items', 'generate_menu_search_icon', 10, 2 );
            remove_action( 'generate_inside_navigation', 'generate_navigation_search' );
        }
    }

    Let me know πŸ™‚

    #602920
    Michael

    Hi Tom,

    Muchas Gracias πŸ™‚

    I’ll try it out and report back.

    #602950
    Michael

    Works like a charm, thank you πŸ™‚

    #602978
    Tom
    Lead Developer
    Lead Developer

    Awesome, glad I could help! πŸ™‚

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