The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
Custom Settings Per Forum
I am looking for a way to hack my forums so that each forum would have a custom setting in the "edit forums" section of the control panel (or anywhere for that matter), which would allow me to turn on/off 2 settings for individual forums, which would over-ride the site-wide settings.
These two are: by-pass maximum allowable edit time for messages. and DO NOT "bump" threads on new posts/replies. Is there any way to accomplish this? I will pay for the work to create these hacks if someone can help me get this done....preferably in a vbhacker format. |
#2
|
||||
|
||||
Quote:
you can change the sortorder if you wish, or set a new order just sort by id, but you cannot stop the bumping, because it's no real action when a new replay is sent by-pass maximum allowable edit time for messages: this won't be so much, you have to run one query and edit two or three files. Would you just bypass the edittime, or set a custom edittime for this forums? perhaps i'll do that in the releasforum, if more user want it |
#3
|
||||
|
||||
are you saying that i can already change the sort order for an individual forum, without changing the whole site?
I was under the impression it was set for all forums in the VB Options.... as for the by-pass maximum edit time, i just want to be able to set an option in the forums properties which will turn allow the edit time limit to be turned off or on for that forum...although in truth, it would probably be coolest if it was set with a blank to set the numerical value for the edit time in the forum properties, with a blank value defaulting to the value set in the VB Options, and a 0 value meaning no limit (by-pass time limits completely). Of course, a fill in the blank is not necessary for my boards...but if you are looking to make it a release, that would most likely be the most beneficial way for the largest number of VB users. |
#4
|
||||
|
||||
well, i just hunted, double checked, and triple checked, and i see no where that will let me change the sort order of an individual forum.....so i guess that is one i still need too
After looking at the sort order options though, neither is really what i want. I want to be able to set certain forums to be sorted by the date the thread was started, instead of the date of the last post. We have some sections which are for advertising, and have a CONTINUAL problem of some people simply serial posting ads, or bumping their own ads, so they will be on top. Once you get several hundred doing it, it gets REALLY confusing for anyone to try to find anything of value. So i want to be able to set it up so they can make replies to their ads, but NOT get bumped back to the top....and i assume that sorting by date of the first post that would be possible. |
#5
|
||||
|
||||
look at the screenie below ^^
ok, i'll code it (make a notice to not forget it) |
#6
|
||||
|
||||
Ok...that is a step in the right direction...the only problem is:
1. The option for sorting i want isn't there. 2. How do you set it for an individual forum to have a different default sort value than the rest of the forums? |
#7
|
||||
|
||||
1. see 2, change lastpost to threadid so it'll sort threads in the order they are created
2. in forumdisplay.php you have to make the line $sortfield='lastpost'; depend on the forum you are.. |
#8
|
||||
|
||||
but i don't want it to sort by last post...i want it to sort by the date the thread started.
|
#9
|
||||
|
||||
as i wrote, you have to change lastpost to threadid then...
|
#10
|
||||
|
||||
you can also make new sortoptions to that pulldown:
edit template forumdisplay_threadslist find the lines <select name="sortfield"> <option value="title" $sort[title]>thread title</option> and add this option for example <option value="threadid" $sort[threadid]>thread startdate</option> then in forumdisplay.php find this: PHP Code:
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|