Re: BuddyPress.org’s Unified Search – How can I get it?
Three issues right now with Unified Search as far as my test…
1. Seems like it is based on MU so it shows a search for “blogs”…
Looks like this can be pulled by commenting the // show blogs search result section in the functions.php mod…
2. It does not actually search the BLOG of the site (or doesn’t report it)… it shows a column for “blog search results” but does not populate… at least on my site. In other words, when I search for something that is clearly in a site blogpost, it returns nothing in the search results under Blog or Blogs..
3. The Sidebar doesn’t show… at first glance, i thought it might be because it was using the -?php get_sidebar (); ?- pull but I changed that to -?php locate_template( array( ‘sidebar.php’ ), true ) ?- and it still doesn’t show (substituting – for brackets) …
The CSS is a little messy… you can easily change this by adding the following to default.css and populating however …
.memberss-search-result {
display: block;
border-bottom:2px dashed #628FBD ;
margin: 12px;
padding: 5px;
color: #1B2C9E;
}
.groups-search-result {
display: block;
border-bottom:2px dashed #628FBD ;
margin: 12px;
padding: 5px;
color: #1B2C9E;
}
.blog-search-result {
display: block;
border-bottom:2px dashed #628FBD ;
margin: 12px;
padding: 5px;
color: #1B2C9E;
}
.blogs-search-result (display: block;
border-bottom:2px dashed #628FBD ;
margin: 12px;
padding: 5px;
color: #1B2C9E;
}
.forums-search-result {
display: block;
border-bottom:2px dashed #628FBD ;
margin: 12px;
padding: 5px;
color: #1B2C9E;
}
Any Idea on how to fix 2 and 3 above? I would appreaciate it!