This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Ajax Search Pro Theme Integration

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Ajax Search Pro Theme Integration Reply To: Ajax Search Pro Theme Integration

#4307
Ernest MarcinkoErnest Marcinko
Keymaster

Indeed, I made a syntax error there, change that code to:

[code]//*ADD SEARCH TO HEADER RIGHT MENU
add_filter( ‘wp_nav_menu_items’, ‘theme_menu_extras’, 10, 2 );

function theme_menu_extras( $menu, $args ) {
if ( ‘header’ !== $args->theme_location )
return $menu;

$menu .= ‘<li class="right search">’ . do_shortcode(‘[wpdreams_ajaxsearchpro id=1]‘) . ‘</li>’;
return $menu;
}[/code]