Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons

Reply
 
Thread Tools
Support Forums Details »»
Support Forums
Version: 1.00, by Adrian Schneider Adrian Schneider is offline
Developer Last Online: Nov 2022 Show Printable Version Email this Page

Category: Miscellaneous Hacks - Version: 3.6.2 Rating:
Released: 10-22-2006 Last Update: Never Installs: 274
Uses Plugins Template Edits
 
No support by the author.

Description
This little number will take any specified forums (subforums optional) and modify them to seperate "open issues" from "closed issues". It's great for tracking which support issues are actually resolved.

The key here is letting users close their own threads. Under forum permissions, make sure you let users do this or it loses most of its usefulness.

I suggest having a sticky thread letting users know they CAN close their own threads. However, this is mostly covered by a SHOWTHREAD edit which will tell one of three messages to the viewer:

Staff - "This issue has been resolved! The thread starter may re-open it if he wishes."

Thread Starter - "This issue has been resolved! You may re-open it if you are still having problems."

Other Users - "This issue has been resolved! If you have a similar issue, please create a new thread." (link)


Screenshot
-http://www.vblogetin.com/images/scre...ed_threads.jpg

Planned Updates
-Button to open/close thread
-$colspan option for modified threadbits
-Phrased
-Forum Chooser instead of using ForumIDs

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
Благодарность от:
shadowfax3

Comments
  #12  
Old 10-23-2006, 01:46 PM
harmor19 harmor19 is offline
 
Join Date: Apr 2005
Posts: 1,324
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Snake
Thanks!
Do you go in every modification thread and say "Thanks"? I think it's getting old.
Reply With Quote
  #13  
Old 10-23-2006, 01:59 PM
ShadowOne ShadowOne is offline
 
Join Date: May 2005
Location: Tampa
Posts: 338
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by harmor19
Do you go in every modification thread and say "Thanks"? I think it's getting old.

LOL..Hes Downloaded 3000 hacks... Look At His Posts... Search Results For The Word: Thanks!

2987 Posts By: Snake .... LOL
Reply With Quote
  #14  
Old 10-23-2006, 04:12 PM
Adrian Schneider's Avatar
Adrian Schneider Adrian Schneider is offline
 
Join Date: Jul 2004
Posts: 2,528
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ShadowOne
Will This Work On 3.5.4? If Not, Is There One I Can Use, Or One You Can Edit For Me? It Would Be Greatly Appreciated...
Remove the 'executionorder="x"' stuff from the XML and it should be OK.
Reply With Quote
  #15  
Old 10-23-2006, 06:43 PM
Barteken Barteken is offline
 
Join Date: Feb 2006
Location: Belgium
Posts: 84
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I saw once a hack like this but there you didn't had to give members the permission the open/close threads.
When someone replied to a problem the thread starter could select the person who solved the problem (this list was made based on who replied on the thread)
is there a way to modify it like this?
Grtz
Reply With Quote
  #16  
Old 10-23-2006, 06:45 PM
Adrian Schneider's Avatar
Adrian Schneider Adrian Schneider is offline
 
Join Date: Jul 2004
Posts: 2,528
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No I want to keep it simple...
Reply With Quote
  #17  
Old 10-23-2006, 10:12 PM
cygy2k cygy2k is offline
 
Join Date: May 2006
Location: Iowa
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

One quick question, is there a way to have everybody see the listing of open and closed threads without them having permission to actually see the contents of one that isn't their own?
Reply With Quote
  #18  
Old 10-23-2006, 10:49 PM
Adrian Schneider's Avatar
Adrian Schneider Adrian Schneider is offline
 
Join Date: Jul 2004
Posts: 2,528
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Kind of unrelated code, but OK....

I don't have time to look at the specific permissions in the code, so I'll just use usergroups 5/6/7 (default staff groups).

UNTESTED...
In the 'Support Forum - Notices' plugin I supplied, add this to the bottom:
PHP Code:
if (
    !
is_member_of($vbulletin->userinfo567) and
    
in_array($thread['forumid'], $checkForums and
    
$vbulletin->userinfo['userid'] != $thread['postuserid']
)
{
    
print_no_permission();

Reply With Quote
  #19  
Old 10-24-2006, 04:34 AM
Hornstar Hornstar is offline
 
Join Date: Jun 2005
Location: Australia
Posts: 2,469
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Okay This is really good. this will be great for 2 of my forums as is.

So am I correct that you can set which forums or subforums you can apply this too?

also im wondering how I would modify this or if you could modify it so I can change a few things around for certain forums. eg. make it say 'open threads' and 'closed threads' As some forums I would like the open threads to always be at the top and I think you have done a great job at doing this.

thanks and hopefully I'll be able to change that name per forum.
Reply With Quote
  #20  
Old 10-24-2006, 04:52 AM
Adrian Schneider's Avatar
Adrian Schneider Adrian Schneider is offline
 
Join Date: Jul 2004
Posts: 2,528
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Go into your options and look for the new setting group... you can enable subforum checking as well as which forums to check.

That phrase is hardcoded into one of the plugins, it should stand out pretty easily because there isn't much code there...
Reply With Quote
  #21  
Old 10-24-2006, 04:57 AM
Hornstar Hornstar is offline
 
Join Date: Jun 2005
Location: Australia
Posts: 2,469
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

cool however that would change the lot, what im after is both, so in a few forums I would have it say it like how you got it but in a few other forums I would change it to how I am wanting, I have a feeling that will change it overall.

also is this just a phrase I would edit to make it

Other Users - "This issue has been resolved! If you have a similar issue, please search the forums before creating a new thread." (link)
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:33 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05272 seconds
  • Memory Usage 2,306KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (1)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete