i found the results listed in "topics" more reasonable,
sometimes in a thread, many post contain the same search word.
repeating show up that post is inappropriate.
i browsed the user profile and seems didn't found such an option.
thanks
can i set "search" to display in topic instead of post?
Re: can i set "search" to display in topic instead of post?
-
Try this...
1. Goto advanced search page
2. Enter search keyword
3. (near bottom) Display results as: Topics
Try this...
1. Goto advanced search page
2. Enter search keyword
3. (near bottom) Display results as: Topics
Re: can i set "search" to display in topic instead of post?
i mean, can i set this as default?
thx
thx
Re: can i set "search" to display in topic instead of post?
You could always add this to the end of the url in the address bar
&sr=topics
* Or make a hotkey/hotstring to do it for you...
* Or create a script that displays an input box for your keyword, then formats the url to your default preferences, and opens a browser search.
&sr=topics
* Or make a hotkey/hotstring to do it for you...
* Or create a script that displays an input box for your keyword, then formats the url to your default preferences, and opens a browser search.
Re: can i set "search" to display in topic instead of post?
autohotkey forum need manual overide. ok. thx.
-
- Posts: 639
- Joined: 03 Dec 2018, 20:02
Re: can i set "search" to display in topic instead of post?
Since tank messed up the crawler bot prevention I was forced to use the forum search and needed the same thing. You can use this userscript I wrote for the search bar.
Code: Select all
// ==UserScript==
// @name Custom search options - Autohotkey Community
// @namespace Violentmonkey Scripts
// @match https://www.autohotkey.com/boards/*
// @grant none
// @version 1.0
// @author -
// @run-at document-end
// @description Set custom search options for the search bar
// ==/UserScript==
(() => {
const searchForm = document.getElementById('search');
if (!searchForm) {
return;
}
const searchOptions = {
//sf: 'titleonly',
sr: 'topics',
}
for (const name in searchOptions) {
var input = document.createElement("input");
input.name = name;
input.value = searchOptions[name];
input.type = 'hidden';
searchForm.appendChild(input);
}
})();
Re: can i set "search" to display in topic instead of post?
hi thx, but i am naive and dont know how to use it.william_ahk wrote: ↑27 Feb 2024, 08:29Since tank messed up the crawler bot prevention I was forced to use the forum search and needed the same thing. You can use this userscript I wrote for the search bar.Code: Select all
// ==UserScript== // @name Custom search options - Autohotkey Community // @namespace Violentmonkey Scripts // @match https://www.autohotkey.com/boards/* // @grant none // @version 1.0 // @author - // @run-at document-end // @description Set custom search options for the search bar // ==/UserScript== (() => { const searchForm = document.getElementById('search'); if (!searchForm) { return; } const searchOptions = { //sf: 'titleonly', sr: 'topics', } for (const name in searchOptions) { var input = document.createElement("input"); input.name = name; input.value = searchOptions[name]; input.type = 'hidden'; searchForm.appendChild(input); } })();
thanks
Re: can i set "search" to display in topic instead of post?
I asked for this setting years ago with no avail. What a pity!
Re: can i set "search" to display in topic instead of post?
Well, browser user scripts have been invented already many years ago.
-
- Posts: 639
- Joined: 03 Dec 2018, 20:02
Re: can i set "search" to display in topic instead of post?
thx, just got the same result from the magic mirror.william_ahk wrote: ↑27 Feb 2024, 10:24Hi, to use:
- Install Tampermonkey or Violentmonkey
- Download this script
- Drag the script file to the browser and install.
Re: can i set "search" to display in topic instead of post?
worked, thx.william_ahk wrote: ↑27 Feb 2024, 10:24Hi, to use:
- Install Tampermonkey or Violentmonkey
- Download this script
- Drag the script file to the browser and install.
after running, just search in the simple search will have the results sorted as topics and no need do thru advanced search.
thanks
Return to “About This Community”
Who is online
Users browsing this forum: No registered users and 17 guests