The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Custom search parameters to create "What's New" for specific sub forums
Hello vBulletin users
Our forum is located at http://www.spacetimestudios.com/forum.php As you may notice, we have 3 main areas to our forums: Pocket Legends, Star Legends and Spacetime Studios Many of our users rely on the "What's New" button to find active discussion. We often receive requests to have a "What's New" search that's specific to each different area. I'd like to change the "What's New" button to be a drop down where you can choose to see what's new on all forums or specific to sub forum. I see that the What's New button passes in parameters via the URL: http://www.spacetimestudios.com/sear...p=vBForum_Post Does anyone know if it is possible to pass in parameters to create a search of new posts specific by sub forum, namely for each different area: Pocket Legends, Star Legends and Spacetime Studios. Thank you in advance for your input! |
#2
|
|||
|
|||
I would like the same information. What other parameters can we use? What about thread prefixes or tags?
Thanksk |
#3
|
|||
|
|||
You can add '&include=1,2,3' to list the forums you want to include in the output. It looks like you need to list each sub forum as well.
Based on a quick look at the code (and not trying these at all), it looks like the possible parameters (when do=getnew) are: 'days', 'exclude', 'include', 'showposts', 'oldmethod', 'sortby', and 'noannounce'. I know 'include' and 'exclude' are a comma separated list of forum ids. The possible values for 'sortby' are: 'title', 'views', 'replycount', 'postusername', 'forum', and 'threadstart'. I assume 'days' is the number of says to include, and 'showposts' is a boolean that shows posts instead of threads. I don't know what the other ones are. |
2 благодарности(ей) от: | ||
Glenn_E, Samhayne-STS |
#4
|
|||
|
|||
Awesome, thanks for digging into the code for me! I'll play with it and see what I can put together to make the searches I'm looking for.
|
#5
|
|||
|
|||
I was thinking, there's a hook location search_before_process, you could probably write a plugin that would let you create your own parameters, for instance if $_REQUEST['section']== 'pocket_legends' then set $_REQUEST['include'] to a list of forums. You might even be able to automatically generate the list of child forums.
|
#6
|
|||
|
|||
Hmm, I see what you're saying, but I'm a community guy by trade. I only play a forum hacker on TV
--------------- Added [DATE]1314135049[/DATE] at [TIME]1314135049[/TIME] --------------- Yup, so this works for our Pocket Legends section: Code:
http://www.spacetimestudios.com/search.php?do=getnew&contenttyp=vBForum_Post&include=4,5,6,8,9,10,11,12,13,14,15,16,20,23,25,26,32,35,36 |
#7
|
|||
|
|||
So any possibility of narrowing a search by prefix? It is included on the search form I just don't know what variable to use in the URL.
It was possible in 3.8. |
#8
|
|||
|
|||
When you're doing a search with do=getnew or do=getdaily, it doesn't use the tag parameter. You could change that by editing search.php.
Find this (around line 481): PHP Code:
and add some code like this: PHP Code:
There may be a way to do the same thing just by building a url with the right parameters (instead of using do=getnew and editing the code), but I'm not sure. |
#9
|
|||
|
|||
In 3.8, there was a do= parameter that you could use to process searches and it was simply do=process. I've tried that in conjunction with prefix, prefixid even using brackets after both and nothing has worked thus far.
I'll play with that code. If anyone has a simpler solution, please let us know. |
#10
|
|||
|
|||
Oh...doh! For some reason I read 'prefix' and thought 'tag'. I'll look again and see if there's anything for prefix.
--------------- Added [DATE]1314218439[/DATE] at [TIME]1314218439[/TIME] --------------- OK, if you're using do=process then I think you want prefixchoice[], as in: Code:
search.php?do=process&prefixchoice[]=foo&prfixchoice[]=bar...... |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|