Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
Hi,
I have tried lots of thing to add Search Bar in my Masthead menu, but didn’t succeed.
If anybody knows, how to add Search Bar in Masthead menu than please help me.
I am using Vantage Theme.
My site url is http://www.sinfosolution.com/
Hi Jitesh Kachhara
Very sorry about the late reply. We work through a prioritized forum queue, and unfortunately it’s taken us some time to get to your thread.
https://siteorigin.com/about/forum-thread-prioritization/
Because it’s been a while since you posted this, would you mind letting us know if you still need help? If so, we’ll jump right in.
Magus
Hi Magus,
Thanks for your mail.
I had solved the issue by pasting below code in my function.php :
add_filter( ‘wp_nav_menu_items’,’add_search_box’, 10, 2 );
function add_search_box( $items, $args ) {
$items .= ” . get_search_form( false ) . ”;
return $items;
Once again thanks for your concern.