Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

New tab search engine missing?

  • 4 replies
  • 1 has this problem
  • 13 views
  • Last reply by cor-el

more options

So, I use Yahoo for my default homepage, and its search engine on empty new tab pages. However, I noticed this morning when doing a search from an empty new tab page it's searching directly using Google. I went to my options and then to search options. Under Default Search Engine, I do not see Yahoo!. What's the deal?

So, I use Yahoo for my default homepage, and its search engine on empty new tab pages. However, I noticed this morning when doing a search from an empty new tab page it's searching directly using Google. I went to my options and then to search options. Under Default Search Engine, I do not see Yahoo!. What's the deal?

All Replies (4)

more options

hi, you can install the yahoo search provider from https://addons.mozilla.org/firefox/addon/yahoo-search-addon/ if you're inclined to do so.

more options

Hello,

You can choose from different search providers such as Google, Yahoo or Bing when you search the Internet using Firefox. For more information, see the articles Search with the Firefox Address Bar and Change your default search settings in Firefox.

If you want to change the default search engine that Firefox uses, use one of these methods:

  • Click the menu button New Fx Menu and choose either Options (on Windows) or Preferences (on Mac or Linux), then select the Search settings panel.
  • Click on the magnifying glass icon in the Search bar, then click on Change Search Settings, as shown here:
search prefs 34

In the Search settings panel that opens, select a different search engine from the drop-down menu:

Fx47DefaultSearchEngine

Let us know if this helps!

more options

FireFoxFan1 said

What's the deal?

More users have reported this since yesterday and a bug report has been filed :

https://bugzilla.mozilla.org/show_bug.cgi?id=1443957

Would you try this please : 3-bar menu (or 'Tools') => Options => Search Under 'One-Click Search Engines' - at the bottom click 'Restore Default Search Engines' Does that bring back the search engines, including Yahoo  ? Probably not .....

See this thread : https://support.mozilla.org/en-US/questions/1208139

May I suggest that you read every post in this thread - there are some temporary workarounds mentioned and 'things to try'.

You'll find Philipp's post there too (excellent solution till this is fixed).

more options

You can save the XML file of the search engine via this special builtin page:

  • chrome://browser/locale/searchplugins/

See:


You can open the Browser Console.

  • "3-bar" menu button or Tools -> Web Developer

Paste the JavaScript code posted below in the command line You need to set devtools.chrome.enabled to true on the about:config page to enable the command line

You can open the about:config page via the location/address bar. You can accept the warning and click "I accept the risk!" to continue.


/* load search engine via local XML file */
var fp = Cc["@mozilla.org/filepicker;1"].createInstance(Ci.nsIFilePicker);
fp.init(window,"Open file",Ci.nsIFilePicker.modeOpen);
fp.appendFilters(Ci.nsIFilePicker.filterXML);
fp.open((rv) => {
  if (rv == Ci.nsIFilePicker.returnOK) {
   var path = fp.file.path;
   var url = OS.Path.toFileURI(path);
   Services.search.addEngine(url, null, null, false);
  }
})