Hi,
Thank you for your message.
You can manually remove some phrases to be searched in the first place.
You can quite easily edit the search box webpart in file -> CMSWebParts/Search/cmssearchbox.ascx.cs
In Search() method please edit it following way:
string searchWord = txtWord.Text;
searchWord = searchWord.Replace("travel", "");
// Log "internal search" activity
Activity internalSearch = new ActivityInternalSearch(searchWord, CMSContext.CurrentDocument, CMSContext.ActivityEnvironmentVariables);
Now the world travel will not be search at all.
Hope this will help.
Kind regards,
Richard Sustek