07-11-2024 06:20 PM
I just noticed in firefox 128.0 that I can no longer click in the search box and hit enter to go to my default search provider's homepage. That was the way I got to that page for years and now all of a sudden it doesnt work. While sure I can just search using that search provider in that box, that box also keeps a record of my searches while going to the search provider homepage doesnt.
12-03-2024 07:38 AM
12-03-2024 07:44 AM
So you keep replying with links. How about answering a question. Why do we need this? What will it do for us? Does it solve the blank searchbar issue? And so on, and so forth. Rule: never download or clink on a link without some assurance that it is safe. Not trying to be an a**hole, but we are trying to get Firefox to fix this issue, not a workaround.
12-03-2024 09:09 AM
The result is the same if you add files to portable 126.0 Beta 1, then update to the current version. The method does not work. Switched to waterfox.
12-03-2024 10:25 AM
Feedback https://www.youtube.com/embed/3Uhf1MuZ8ME but “hacks” are not what users want.
Note : my userChrome.css it has nothing to do with the original subject.
About JavaScript (.js)
https://support.mozilla.org/en-US/kb/use-troubleshooting-information-page-fix-firefox try
Try clearing the startup cache, if you wish
12-03-2024 09:55 PM
Waterfox allows you to go to the search provider page by clicking instead of Shift+Click. This is what I use a lot and what I need. Works in the latest version 6.5.2.
"Note : my userChrome.css" - you mean userChromeJS folder?
12-03-2024 11:19 PM
Hello
About userChrome.css https://www.userchrome.org
By way of illustration https://forums.mozillazine.org/viewtopic.php?f=38&t=3114663
About userChrome.js
Under Firefox Release https://www.youtube.com/embed/b4r_zBlyUtE i've tested and apparently it works
12-04-2024 02:18 PM - edited 12-04-2024 02:20 PM
I have watched the videos that are attached to this thread. There is very little info as to how they claim to work. I saw the JS file and duplicated the file, put it in the created directory, it does not work. Now WHY is unknown. That is why I said there is little info why it works. No discussion, no nothing. I don't know what I am doing wrong. Maybe it is because I am using the wrong FF? I don't know.
Here is what I copied. The error I get is searchbar = null or something like that.
// ==UsrScript==
// @name patchForBug1894910_allow_search_with_empty_text/uc.js
// @description undoing Bug 1894910 - Remove function to open search page
// @include chrome://browser/content/browser.xhtml
// @@compatibility 12
// @version 2024/06/4
// ==/UserScript==
(function() {
let searchbar = document.getElementById('searchbar');
let func = searchbar.textbox.handleEnter.toString();
func = func.replace(
'if (!this.textbox.value) {',
'if (false) {'
);
func = func.replace(
'!this.textbox.value &&',
'false &&'
);
searchbar.textbox.handleEnter = (new Function(
'event',
func.replace(/[^{]*\{/, '').replace(/}\s*$/, '')
)).bind(searchbar);
})();
12-05-2024 04:57 PM
Hmm. I'm still trying to figure out how any of this is relevant to the main topic. How does this restore something that Mozilla has eliminated and refuses to reinstall?
12-06-2024 02:03 AM
These people are exploring alternatives as Mozilla has refused to include the function.
Those alternatives do have that function working.
12-06-2024 07:56 AM - edited 12-06-2024 07:57 AM
Ah, I see. Thanks for explaining it; I didn't recognize what was going on. I'll stay out of it! I upgraded to 127, back to when it worked.
12-06-2024 08:02 AM
Still cannot get the JS file to work. The individual that posted the videos did not respond. The individual who created the JS did not respond. I have no comments regarding the JS from individuals who are knowledgeable in JS did not respond. So as far as I can tell, the only resolution is to downgrade to FF127. Any comments regarding the JS would be helpful. Thanks
12-08-2024 05:52 AM
Yes, I finally got it right, the method works with ENTER. But, unfortunately, it doesn't work with a MOUSE CLICK.
12-08-2024 05:55 AM - edited 12-08-2024 05:56 AM
@2SS2 you got what right? Your comment, unless you mention specifics, is meaningless. State WHAT you go right and how you did it.
12-08-2024 06:07 AM
Post by Agent virtuel » August 11th, 2024, 10:31 pm
12-08-2024 07:59 AM
Thank you. I had to rummage through two languages, Japanese and German. It did work, however, when clicking in the searchbox and pressing enter, whichever search engine I am using will open. But, if I click in the searchbox, click on the magnifying glass and click on a search link, it does not work. But this is still better than nothing.
Again, thanks.
12-02-2024 07:30 PM
FIX it.
12-08-2024 02:52 PM - edited 12-08-2024 02:57 PM
Seeing how Firefox is not too interested in fixing this issue, I have read through many posts here trying to figure out what to do. Some of these posts were cryptic, some pointed to videos, some pointed to links in French, or German, or Japanese. After watching and mimicking what they were doing, I finally got the searchbar to work. So KUDOS to the many who posted and to those who used cryptic text. It was a good exercise for my old brain.
But now I find that it was already completely written out. The problem was using the right search terms to find the solution. Had I found this earlier I guess I wouldn't be so bummed out about the searchbar issues. So here is the link. Follow the instruction exactly. But first practice by going to the directories where the files will be stored. This is important else you will make a mistake and get frustrated.
Note, if you do not see Mozilla Firefox in //Windows/Program Files/ then you are dealing with a 32-bit system. Look instead in //Windows/Program Files (x86). You will find Mozilla Firefox in that directory.
Again, follow the instructions. Practice going to the directories first before moving files. Take your time and if you did it correctly, your searchbar will be back to FF127.
Good luck!