vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Custom Settings Per Forum (https://vborg.vbsupport.ru/showthread.php?t=39689)

ladyfyre 06-10-2002 02:07 PM

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.

Xenon 06-10-2002 02:51 PM

Quote:

DO NOT "bump" threads on new posts/replies
hmm, this would be a problem, because threads aren't really bumped after a post, just the lastposter and lastposttime are updatet, and so it'll "bump" if the sortorder in forumdisplay depends on the last change.

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 :)

ladyfyre 06-10-2002 03:31 PM

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.

ladyfyre 06-10-2002 03:36 PM

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.

Xenon 06-10-2002 03:36 PM

1 Attachment(s)
look at the screenie below ^^

ok, i'll code it (make a notice to not forget it)

ladyfyre 06-10-2002 03:43 PM

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?

Xenon 06-10-2002 04:21 PM

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..

ladyfyre 06-10-2002 04:27 PM

but i don't want it to sort by last post...i want it to sort by the date the thread started.

Xenon 06-10-2002 04:29 PM

as i wrote, you have to change lastpost to threadid then...

Xenon 06-10-2002 04:39 PM

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:

switch ($sortfield) {
  case 
'title':
  case 
'lastpost':
  case 
'replycount':
  case 
'views':
  case 
'postusername':
  case 
'voteavg':
    break; 

and before the break; add case 'threadid':


All times are GMT. The time now is 02:59 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01591 seconds
  • Memory Usage 1,737KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete