MyBB Community Forums

Full Version: Remove highlight addition from search results
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I had copied my old forum and built another one with domain change

everything works however when an internal search is done it adds &highlight=term at the end of the result link

And this highlight causes redirect to my first forum

So how can i remove this highlight thing?
Quick & Dirty: Find search.php and comment out / remove the following php:

	// Work out if we have terms to highlight
	$highlight = "";
	if($search['keywords'])
	{
		if($mybb->seo_support == true)
		{
			$highlight = "?highlight=".urlencode($search['keywords']);
		}
		else
		{
			$highlight = "&highlight=".urlencode($search['keywords']);
		}
	}
Try simple method. Open AdminCP/Templates & Styles/You theme/global.css and delete this: 
.highlight {
background: #FFC;
padding-top: 3px;
padding-bottom: 3px;
}