Jump to content

ljambrose

New Members
  • Posts

    2
  • Joined

  • Last visited

Community Answers

  1. ljambrose's post in Trying to add search bar admin panel menu bar searching woocommerce products was marked as the answer   
    Lucky_hunter figured it out for me on another Forum. Adding code here for anyone who is looking for something like this.
     
    //Add Search To Admin Bar
    function boatparts_admin_bar_form() {
    global $wp_admin_bar;

    $search_query = '';
    if ( $_GET['post_type'] == 'product' ) {
    $search_query = $_GET['s'];
    }

    $wp_admin_bar->add_menu(array(
    'id' => 'boatparts_admin_bar_form',
    'parent' => 'top-secondary',
    'title' => '<form method="get" action="'.get_site_url().'/wp-admin/edit.php?post_type=product">
    <input name="s" type="text" value="' . $search_query . '" style="height:20px;margin:5px 0;line-height:1em;"/>
    <input type="submit" style="padding:3px 7px;line-height:1" value="Search Products"/>
    <input name="post_type" value="product" type="hidden">
    </form>'
    ));
    }
    add_action('admin_bar_menu', 'boatparts_admin_bar_form');
     
    Enjoy!
    Consider this topic closed
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.