PDA

View Full Version : Miscellaneous Hacks - Support Forums


Adrian Schneider
10-22-2006, 10:00 PM
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/screenshots/solved_threads.jpg

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

JohnBee
10-23-2006, 02:12 AM
Installed and LOVING IT! - Thanks for a great hack!

ChurchMedia
10-23-2006, 02:13 AM
Cool! Thanks!

LittleAndroidMa
10-23-2006, 02:16 AM
Nice one.

snowlion
10-23-2006, 04:04 AM
thank
great mod

Takkero
10-23-2006, 09:11 AM
great hack! installed! :D

harmor19
10-23-2006, 09:13 AM
I'm about to add "Open/Close" buttons on the post bit, I'll send you the edits needed if you don't beat me to it.

Thanks for the hack.

Snake
10-23-2006, 12:14 PM
Thanks!

ubuntu-geek
10-23-2006, 01:26 PM
this is pretty cool.. what would be even more cool is if like [resolved] could be put in the subject line or in a column in the showthread display.

ShadowOne
10-23-2006, 01:31 PM
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...

harmor19
10-23-2006, 01:46 PM
Thanks!
Do you go in every modification thread and say "Thanks"? I think it's getting old.

ShadowOne
10-23-2006, 01:59 PM
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 :)

Adrian Schneider
10-23-2006, 04:12 PM
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.

Barteken
10-23-2006, 06:43 PM
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

Adrian Schneider
10-23-2006, 06:45 PM
No I want to keep it simple...

cygy2k
10-23-2006, 10:12 PM
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?

Adrian Schneider
10-23-2006, 10:49 PM
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: if (
!is_member_of($vbulletin->userinfo, 5, 6, 7) and
in_array($thread['forumid'], $checkForums and
$vbulletin->userinfo['userid'] != $thread['postuserid']
)
{
print_no_permission();
}

Hornstar
10-24-2006, 04:34 AM
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.

Adrian Schneider
10-24-2006, 04:52 AM
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...

Hornstar
10-24-2006, 04:57 AM
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)

Adrian Schneider
10-24-2006, 04:59 AM
So which phrases do you want on a per-forum basis? The 'Open Issues' and 'Closed Issues' one, or the 3 phrases in the SHOWTHREAD template?

Hornstar
10-24-2006, 05:40 AM
So which phrases do you want on a per-forum basis? The 'Open Issues' and 'Closed Issues' one, or the 3 phrases in the SHOWTHREAD template?

The open issues and closed issues for now as on some forums I want to change that to something else.

Thanks :)

Adrian Schneider
10-24-2006, 05:54 AM
Replace the 'Support Forum - Seperate Open from Closed' plugin with this: global $vbulletin, $threadCounter, $openThreads, $closedThreads;
$show['thread_seperator'] = false;

if (!$thread['sticky'] and $vbulletin->options['openAtTop'])
{
if ($vbulletin->options['openAtTop'])
{
$threadHeadings = array(
'issues' => array(
'Open Issues',
'Closed Issues'
),
'threads' => array(
'Open Threads',
'Closed Threads'
),
'customers' => array(
'Angry Customers',
'Happy Customers'
)
);

switch ($thread['forumid'])
{
case 1:
case 2:
$headings =& $threadHeadings['issues'];
break;

case 3:
case 4:
$headings =& $threadHeadings['customers'];
break;

default:
$headings =& $threadHeadings['threads'];
}

if (!$openThreads and $thread['open'])
{
$show['thread_seperator'] = true;
$thread['heading'] = $headings[0];
}
if (!$closedThreads and !$thread['open'])
{
$show['thread_seperator'] = true;
$thread['heading'] = $headings[1];
}
$lastOpenStatus = $thread['open'];
}

if ($thread['open']) $openThreads++;
if (!$thread['open']) $closedThreads++;
}Basically it has 3 different sets of phrases, and then a switch to figure out which set to use. Customize the values inside the switch to change which forums use what heading, and then default will handle the rest. I'll end up phrasing it next week when I get some time, but this isn't a bad solution.

Hornstar
10-24-2006, 09:05 AM
Replace the 'Support Forum - Seperate Open from Closed' plugin with this: global $vbulletin, $threadCounter, $openThreads, $closedThreads;
$show['thread_seperator'] = false;

if (!$thread['sticky'] and $vbulletin->options['openAtTop'])
{
if ($vbulletin->options['openAtTop'])
{
$threadHeadings = array(
'issues' => array(
'Open Issues',
'Closed Issues'
),
'threads' => array(
'Open Threads',
'Closed Threads'
),
'customers' => array(
'Angry Customers',
'Happy Customers'
)
);

switch ($thread['forumid'])
{
case 1:
case 2:
$headings =& $threadHeadings['issues'];
break;

case 3:
case 4:
$headings =& $threadHeadings['customers'];
break;

default:
$headings =& $threadHeadings['threads'];
}

if (!$openThreads and $thread['open'])
{
$show['thread_seperator'] = true;
$thread['heading'] = $headings[0];
}
if (!$closedThreads and !$thread['open'])
{
$show['thread_seperator'] = true;
$thread['heading'] = $headings[1];
}
$lastOpenStatus = $thread['open'];
}

if ($thread['open']) $openThreads++;
if (!$thread['open']) $closedThreads++;
}Basically it has 3 different sets of phrases, and then a switch to figure out which set to use. Customize the values inside the switch to change which forums use what heading, and then default will handle the rest. I'll end up phrasing it next week when I get some time, but this isn't a bad solution.

Thanks for your fast response, hopefully I'll get time to implement this asap as it will be a good feature for my forums.

Thanks :)

Nathan2006
10-25-2006, 07:23 AM
Thank you SirAdrian

Love this :)

Install

I'm having one small problem with the dividers and don't know how to remove this one I have marked off in red (Screenshot added)

Thank you for any help :)

Adrian Schneider
10-25-2006, 07:59 AM
Since the prefix hack adds a column, you'll have to adjust the addition to the threadbit template. Instead of <if ... >7<else />6</if>use<if ... >8<else />7</if>

Nathan2006
10-25-2006, 08:16 AM
Since the prefix hack adds a column, you'll have to adjust the addition to the threadbit template. Instead of <if ... >7<else />6</if>use<if ... >8<else />7</if>

Hi,

Thanks for your quick reply :)

I have tried changing these numbers on this code:

<if condition="$show['thread_seperator']">
<tr>
<td class="thead" colspan="2">&nbsp;</td>
<td class="thead" colspan="<if condition="$show['inlinemod']">5<else />4</if>">$thread[heading]</td>
</tr>
</if>

But no change :(

I must be going wrong somewhere lol

Here is a copy of my threadbit:

<if condition="$show['thread_seperator']">
<tr>
<td class="thead" colspan="2">&nbsp;</td>
<td class="thead" colspan="<if condition="$show['inlinemod']">5<else />4</if>">$thread[heading]</td>
</tr>
</if>
<tr>
<td class="alt1" id="td_threadstatusicon_$thread[realthreadid]">
$thread[openclose_editable]
<img src="$stylevar[imgdir_statusicon]/thread$thread[statusicon].gif" id="thread_statusicon_$thread[realthreadid]" alt="<if condition="$show['threadcount']"><phrase 1="$thread[dot_count]" 2="$thread[dot_lastpost]">$vbphrase[have_x_posts_in_thread_last_y]</phrase></if>" border="" />
</td>
<if condition="$show['threadicons']">
<td class="alt2"><if condition="$show['threadicon']"><img src="$thread[threadiconpath]" alt="$thread[threadicontitle]" border="0" /><else />&nbsp;</if></td>
</if>
<if condition="$show['threadprefix'] == 2">
<td class="alt1" align="$prefixalign" nowrap="nowrap"><if condition="$thread['threadprefix']">$prefixmarkup[0]$thread[threadprefix]$prefixmarkup[1]</if></td>
</if>
<td class="alt1" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]">
<!-- vbPlaza start -->
$thread[title_editable]
<div <if condition="$thread['titlestyle']">style="$thread[titlestyle]"</if>>
<!-- vbPlaza end -->
<if condition="$show['moderated'] OR $show['deletedthread'] OR $show['paperclip'] OR $show['subscribed'] OR $show['sticky'] OR $show['rexpires']">
<span style="float:$stylevar[right]">
<if condition="$show['rexpires']"> <img class="inlineimg" src="$stylevar[imgdir_misc]/expires.gif" alt="<phrase 1="$thread[expiredate]" 2="$thread[expiretime]">$vbphrase[expires_on_x_y]</phrase>" /> </if>
<if condition="$show['moderated']"> <img class="inlineimg" src="$stylevar[imgdir_misc]/moderated_small.gif" alt="<phrase 1="$thread[hiddencount]">$vbphrase[x_moderated_posts]</phrase>" /> </if>
<if condition="$show['deletedthread']"> <img class="inlineimg" src="$stylevar[imgdir_misc]/trashcan_small.gif" alt="<phrase 1="$thread[deletedcount]">$vbphrase[x_deleted_posts]</phrase>" /> </if>
<if condition="$show['paperclip']"> <a href="#" onclick="attachments($thread[threadid]); return false"> <img class="inlineimg" src="$stylevar[imgdir_misc]/paperclip.gif" border="0" alt="<phrase 1="$thread[attach]">$vbphrase[x_attachments]</phrase>" /></a> </if>
<if condition="$show['subscribed']"> <img class="inlineimg" src="$stylevar[imgdir_misc]/subscribed.gif" alt="$vbphrase[you_are_subscribed_to_this_thread]" /> </if>
<if condition="$show['sticky']"> <img class="inlineimg" src="$stylevar[imgdir_misc]/sticky.gif" alt="$vbphrase[sticky_thread]" /> </if>
</span>
</if>
<if condition="$show['gotonewpost']"><a href="showthread.php?$session[sessionurl]goto=newpost&amp;t=$thread[threadid]" id="thread_gotonew_$thread[realthreadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/firstnew.gif" alt="$vbphrase[go_to_first_new_post]" border="0" /></a></if>
$thread[movedprefix]
$thread[typeprefix]
<if condition="$show['threadprefix'] == 1">
<if condition="$thread['threadprefix']">$prefixmarkup[0]$thread[threadprefix]$prefixmarkup[1]</if>
</if>
$thread[moderatedprefix]
<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$thread['titlestyle']">style="$thread[titlestyle]"</if>>$thread[threadtitle]</a>
<if condition="$thread['pagenav']">$stylevar[dirmark]<span class="smallfont" style="white-space:nowrap">(<img class="inlineimg" src="$stylevar[imgdir_misc]/multipage.gif" alt="$vbphrase[multipage_thread]" border="0" /> $thread[pagenav]<if condition="$show[pagenavmore]"> ... <a href="showthread.php?$session[sessionurl]t=$thread[threadid]&amp;page=$thread[totalpages]$thread[highlight]">$vbphrase[last_page]</a></if>)</span></if>
</div>

<if condition="$show['rmanage']"><div class="smallfont"><span style="float:$stylevar[right]"><a href="postings.php?$session[sessionurl]do=editthread&amp;t=$thread[redirectthreadid]">$vbphrase[manage]</a></span></div></if>

<div class="smallfont">
<if condition="$show['threadratings'] AND $show['threadrating']"><span style="float:$stylevar[right]"><img class="inlineimg" src="$stylevar[imgdir_rating]/rating_$thread[rating].gif" border="0" alt="<phrase 1="$thread[votenum]" 2="$thread[voteavg]">$vbphrase[thread_rating_x_votes_y_average]</phrase>" /></span></if>
<if condition="$show['guestuser']">
$thread[postusername]
<else />
<phrase 1="$threadstartedby_date" 2="$threadstartedby_name">$vbphrase[threadstartedby_date_name]</phrase>
</if>
</div>

<if condition="$show['unsubscribe']">
<div class="smallfont">
<a href="newreply.php?$session[sessionurl]do=newreply&amp;t=$thread[threadid]" rel="nofollow">$vbphrase[reply]</a> |
<a href="subscription.php?$session[sessionurl]do=removesubscription&amp;return=ucp&amp;t=$thread[threadid]" rel="nofollow">$vbphrase[unsubscribe]</a>
</div>
</if>

</td>

<if condition="$show['threadmoved']">
<td class="alt2" align="center">-</td>
<else />
<td class="alt2" title="<phrase 1="$thread[replycount]" 2="$thread[views]">$vbphrase[replies_x_views_y]</phrase>">
<div class="smallfont" style="text-align:$stylevar[right]; white-space:nowrap">
$thread[lastpostdate] <if condition="!$show['detailedtime']"><span class="time">$thread[lastposttime]</span></if><br />
<phrase 1="member.php?find=lastposter&amp;t=$thread[threadid]" 2="$thread[lastposter]">$vbphrase[by_x]</phrase> <a href="showthread.php?$session[sessionurl]p=$thread[lastpostid]$thread[highlight]#post$thread[lastpostid]"><img class="inlineimg" src="$stylevar[imgdir_button]/lastpost.gif" alt="$vbphrase[go_to_last_post]" border="0" /></a>
</div>
</td>
</if>

<if condition="$show['notificationtype']">
<td class="alt1"><div class="smallfont">
<label for="sub$subscribethread[$threadid]">$thread[notification]</label>
</div></td>
<td class="alt2"><input type="checkbox" name="deletebox[$subscribethread[$threadid]]" id="sub$subscribethread[$threadid]" value="yes" /></td>
<else />
<td class="alt1" align="center"><if condition="$show['threadmoved']">-<else /><a href="#" onclick="who($thread[threadid]); return false;">$thread[replycount]</a></if></td>
<td class="alt2" align="center">$thread[views]</td>

<if condition="$show['forumlink']">
<td class="alt1"><a href="forumdisplay.php?$session[sessionurl]f=$thread[forumid]">$thread[forumtitle]</a></td>
</if>
</if>

<if condition="$show['inlinemod']">
<td class="alt1">
<input type="checkbox" name="tlist[$thread[realthreadid]]" id="tlist_$thread[realthreadid]" value="$thread[checkbox_value]" <if condition="$show['disabled']">disabled="disabled"</if> />
</td>
</if>
</tr>

Adrian Schneider
10-25-2006, 08:19 AM
Try this... <if condition="$show['thread_seperator']">
<tr>
<td class="thead" colspan="2">&nbsp;</td>
<td class="thead" colspan="<if condition="$show['inlinemod']">6<else />5</if>">$thread[heading]</td>
</tr>
</if>
<tr>
<td class="alt1" id="td_threadstatusicon_$thread[realthreadid]">
$thread[openclose_editable]
<img src="$stylevar[imgdir_statusicon]/thread$thread[statusicon].gif" id="thread_statusicon_$thread[realthreadid]" alt="<if condition="$show['threadcount']"><phrase 1="$thread[dot_count]" 2="$thread[dot_lastpost]">$vbphrase[have_x_posts_in_thread_last_y]</phrase></if>" border="" />
</td>
<if condition="$show['threadicons']">
<td class="alt2"><if condition="$show['threadicon']"><img src="$thread[threadiconpath]" alt="$thread[threadicontitle]" border="0" /><else />&nbsp;</if></td>
</if>
<if condition="$show['threadprefix'] == 2">
<td class="alt1" align="$prefixalign" nowrap="nowrap"><if condition="$thread['threadprefix']">$prefixmarkup[0]$thread[threadprefix]$prefixmarkup[1]</if></td>
</if>
<td class="alt1" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]">
<!-- vbPlaza start -->
$thread[title_editable]
<div <if condition="$thread['titlestyle']">style="$thread[titlestyle]"</if>>
<!-- vbPlaza end -->
<if condition="$show['moderated'] OR $show['deletedthread'] OR $show['paperclip'] OR $show['subscribed'] OR $show['sticky'] OR $show['rexpires']">
<span style="float:$stylevar[right]">
<if condition="$show['rexpires']"> <img class="inlineimg" src="$stylevar[imgdir_misc]/expires.gif" alt="<phrase 1="$thread[expiredate]" 2="$thread[expiretime]">$vbphrase[expires_on_x_y]</phrase>" /> </if>
<if condition="$show['moderated']"> <img class="inlineimg" src="$stylevar[imgdir_misc]/moderated_small.gif" alt="<phrase 1="$thread[hiddencount]">$vbphrase[x_moderated_posts]</phrase>" /> </if>
<if condition="$show['deletedthread']"> <img class="inlineimg" src="$stylevar[imgdir_misc]/trashcan_small.gif" alt="<phrase 1="$thread[deletedcount]">$vbphrase[x_deleted_posts]</phrase>" /> </if>
<if condition="$show['paperclip']"> <a href="#" onclick="attachments($thread[threadid]); return false"> <img class="inlineimg" src="$stylevar[imgdir_misc]/paperclip.gif" border="0" alt="<phrase 1="$thread[attach]">$vbphrase[x_attachments]</phrase>" /></a> </if>
<if condition="$show['subscribed']"> <img class="inlineimg" src="$stylevar[imgdir_misc]/subscribed.gif" alt="$vbphrase[you_are_subscribed_to_this_thread]" /> </if>
<if condition="$show['sticky']"> <img class="inlineimg" src="$stylevar[imgdir_misc]/sticky.gif" alt="$vbphrase[sticky_thread]" /> </if>
</span>
</if>
<if condition="$show['gotonewpost']"><a href="showthread.php?$session[sessionurl]goto=newpost&amp;t=$thread[threadid]" id="thread_gotonew_$thread[realthreadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/firstnew.gif" alt="$vbphrase[go_to_first_new_post]" border="0" /></a></if>
$thread[movedprefix]
$thread[typeprefix]
<if condition="$show['threadprefix'] == 1">
<if condition="$thread['threadprefix']">$prefixmarkup[0]$thread[threadprefix]$prefixmarkup[1]</if>
</if>
$thread[moderatedprefix]
<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$thread['titlestyle']">style="$thread[titlestyle]"</if>>$thread[threadtitle]</a>
<if condition="$thread['pagenav']">$stylevar[dirmark]<span class="smallfont" style="white-space:nowrap">(<img class="inlineimg" src="$stylevar[imgdir_misc]/multipage.gif" alt="$vbphrase[multipage_thread]" border="0" /> $thread[pagenav]<if condition="$show[pagenavmore]"> ... <a href="showthread.php?$session[sessionurl]t=$thread[threadid]&amp;page=$thread[totalpages]$thread[highlight]">$vbphrase[last_page]</a></if>)</span></if>
</div>

<if condition="$show['rmanage']"><div class="smallfont"><span style="float:$stylevar[right]"><a href="postings.php?$session[sessionurl]do=editthread&amp;t=$thread[redirectthreadid]">$vbphrase[manage]</a></span></div></if>

<div class="smallfont">
<if condition="$show['threadratings'] AND $show['threadrating']"><span style="float:$stylevar[right]"><img class="inlineimg" src="$stylevar[imgdir_rating]/rating_$thread[rating].gif" border="0" alt="<phrase 1="$thread[votenum]" 2="$thread[voteavg]">$vbphrase[thread_rating_x_votes_y_average]</phrase>" /></span></if>
<if condition="$show['guestuser']">
$thread[postusername]
<else />
<phrase 1="$threadstartedby_date" 2="$threadstartedby_name">$vbphrase[threadstartedby_date_name]</phrase>
</if>
</div>

<if condition="$show['unsubscribe']">
<div class="smallfont">
<a href="newreply.php?$session[sessionurl]do=newreply&amp;t=$thread[threadid]" rel="nofollow">$vbphrase[reply]</a> |
<a href="subscription.php?$session[sessionurl]do=removesubscription&amp;return=ucp&amp;t=$thread[threadid]" rel="nofollow">$vbphrase[unsubscribe]</a>
</div>
</if>

</td>

<if condition="$show['threadmoved']">
<td class="alt2" align="center">-</td>
<else />
<td class="alt2" title="<phrase 1="$thread[replycount]" 2="$thread[views]">$vbphrase[replies_x_views_y]</phrase>">
<div class="smallfont" style="text-align:$stylevar[right]; white-space:nowrap">
$thread[lastpostdate] <if condition="!$show['detailedtime']"><span class="time">$thread[lastposttime]</span></if><br />
<phrase 1="member.php?find=lastposter&amp;t=$thread[threadid]" 2="$thread[lastposter]">$vbphrase[by_x]</phrase> <a href="showthread.php?$session[sessionurl]p=$thread[lastpostid]$thread[highlight]#post$thread[lastpostid]"><img class="inlineimg" src="$stylevar[imgdir_button]/lastpost.gif" alt="$vbphrase[go_to_last_post]" border="0" /></a>
</div>
</td>
</if>

<if condition="$show['notificationtype']">
<td class="alt1"><div class="smallfont">
<label for="sub$subscribethread[$threadid]">$thread[notification]</label>
</div></td>
<td class="alt2"><input type="checkbox" name="deletebox[$subscribethread[$threadid]]" id="sub$subscribethread[$threadid]" value="yes" /></td>
<else />
<td class="alt1" align="center"><if condition="$show['threadmoved']">-<else /><a href="#" onclick="who($thread[threadid]); return false;">$thread[replycount]</a></if></td>
<td class="alt2" align="center">$thread[views]</td>

<if condition="$show['forumlink']">
<td class="alt1"><a href="forumdisplay.php?$session[sessionurl]f=$thread[forumid]">$thread[forumtitle]</a></td>
</if>
</if>

<if condition="$show['inlinemod']">
<td class="alt1">
<input type="checkbox" name="tlist[$thread[realthreadid]]" id="tlist_$thread[realthreadid]" value="$thread[checkbox_value]" <if condition="$show['disabled']">disabled="disabled"</if> />
</td>
</if>
</tr>

Nathan2006
10-25-2006, 08:37 AM
Hi,

I just tried it and the seperator is still there :(

EDIT:

I found what the problem was it was Separate Sticky and Normal Threads (https://vborg.vbsupport.ru/showthread.php?t=117944)

Sorted now thanks for your help :)

Adrian Schneider
10-25-2006, 05:58 PM
Glad you figured it out.

That's why I hate hacks that add/edit templates at run-time; they are a pain in the ass to debug!

cyberoptik
10-26-2006, 01:12 AM
I can't seem to find where to turn this hack on for a specific forum. I've looked under 'edit forum' but the setting is not there. Please help :).

Adrian Schneider
10-26-2006, 01:16 AM
It's hidden away in the vB. Options (probably your newest setting group at the bottom).

Slyfox1
10-26-2006, 02:27 AM
Nice HACK, but it conflicts with the Seperate Normal/Sticky posts HACK :(

Adrian Schneider
10-26-2006, 02:35 AM
It shouldn't really "conflict" but it will give you two bars... Disable the other hack in your support forums.

Slyfox1
10-26-2006, 02:42 AM
It shouldn't really "conflict" but it will give you two bars... Disable the other hack in your support forums.


umm, I cant :)

There's only an one or off option..

Pitty, very usefull...

Adrian Schneider
10-26-2006, 02:47 AM
Alter the 'Separate Sticky and Normal Threads' plugin (forumdisplay_complete), change the initial if block from this: if ($vbulletin->options['gosterx1']toif ($vbulletin->options['gosterx1'] and !$vbulletin->options['openAtTop'])

Slyfox1
10-26-2006, 03:09 AM
Cheers..

Takkero
10-27-2006, 02:11 PM
i installed this and i also trying to add the function i explain here:

https://vborg.vbsupport.ru/showthread.php?t=129805

ok.. i want it for guild status... but how about support status?

people when list all support threads can see (using the "colored gif" near thread) is the support solve the problem (green gif) or if not solve it (red gif). The new support threads have the yellow gif that means "we are working on it and will give an answere as soon as possible) :)

evenmonkeys
10-27-2006, 11:29 PM
That's a really good idea. I like that. Simple but effective.

Adrian Schneider
10-27-2006, 11:39 PM
I'll try to implement the planned updates this weekend, and also fix a bug that nobody has spotted yet. :)

thenetbox
10-30-2006, 03:03 PM
Hi, for some reason it doesn't work for me. When I click on close it does show:

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

But in the support forum I don't see Open Issues/ Close Issues bars.

I have imported it and made the template changes. Do I need to change my threadbit template edit?

thanks

Edit: Ignore me.. I was editting the wrong template.

lanc3lot
10-31-2006, 10:03 AM
First of all, ty for this little hack, as its a good work overall. I have a feature to propose, that it may help the mods / admins, manage the open / close issues better.

When a thread is answered by users but the mod / admin doesnt know if the prob is actually fixed for the user, to be able to press a button in the Thread Tools, and send automatically a private message to the thread starter with a predefined text.

The text could be like this:

"Dear $username

There have been x days since your thread started and x replies. If u feel that your problem is fixed, please close the thread. If not, post your new results, so users / mods / admins, can reply again for your issues. If you dont do any action in the next 7 days, the thread will be auto closed. Ty for your understanding"

And so, after x days, the thread could be auto closed.

What do u think?

I believe will solve many probs, hope it can be implemented

Adrian Schneider
11-01-2006, 05:33 AM
Possibly... I'll add it to my 2nd revision which will be sometime after the first!

lanc3lot
11-01-2006, 12:41 PM
Ty mate, waiting for it then :)

FleaBag
11-04-2006, 01:21 PM
Thanks Adrian, I have installed. :)

krazycivik
11-07-2006, 07:25 AM
ok ive added this hack but how does it work? im pretty new at this but in options i see all it askes for is forum id. i add it but cant seem to get anything anyway u can help me figure this out thanx.

Slyfox1
11-10-2006, 03:02 AM
Alter the 'Separate Sticky and Normal Threads' plugin (forumdisplay_complete), change the initial if block from this: if ($vbulletin->options['gosterx1']toif ($vbulletin->options['gosterx1'] and !$vbulletin->options['openAtTop'])

I've only just got around to trying the suggestion above, and unfortunatley it doesn't work.

The "Normal and "Sticky" seperators are gone, but the "Open and Closed" ones don't appear. When I close a thread it dissappears..

Sly

Capt PPRuNe
11-11-2006, 06:47 PM
I tried installing it and appeared to be working OK except that when a thread was closed it disappeared except for admins. Also, even as an admin I couldn't see the status message for the thread.

Could be a conflict with another plug-in but I don't have time to try and find out which one.

Adrian Schneider
11-16-2006, 01:41 AM
Slyfox1, if you are still having troubles PM me ACP login info and I will help you get it working.

Capt PPRuNe, are you still having troubles?

Cocko
11-16-2006, 04:38 PM
nice hack.
could this be written in TMS ? ;)

Adrian Schneider
11-16-2006, 04:42 PM
What is TMS?

Cocko
11-16-2006, 07:24 PM
Template Modification System where template modifications are part of
product .xml and after import stored in database.

I think its more public at vbhacks-germany.org .

adwade
11-18-2006, 03:25 AM
It's hidden away in the vB. Options (probably your newest setting group at the bottom).

Suggestion: Add this information to your Install.txt file.

As a newbie, I spent a fair amount of time re-checking my Template Edits thinking there was an error perhaps. When in fact, I just hadn't gotten around to declaring which Forum ID was to be my Support Forum.

Thanxx! Nice MOD and easy system to allow my users to bring up any issues found on the forums.

Adrian Schneider
11-18-2006, 03:27 AM
sorry. will do

adwade
11-18-2006, 03:50 AM
One other question, not being a coder I rely heavily on exact instructions. Where you say:

Add the following to the beginning of the "threadbit" template:
<if condition="$show['thread_seperator']">
<tr>
<td class="thead" colspan="2">&nbsp;</td>
<td class="thead" colspan="<if condition="$show['inlinemod']">5<else />4</if>">$thread[heading]</td>
</tr>
</if>


Do you put that at the absolute beginning of the file? Meaning even before the first <tr> is encountered, or just after that very first <tr> ?

Referring to this first one already existing in the template...
<tr>
<td class="alt1" id="td_threadstatusicon_$thread[realthreadid]">
$thread[openclose_editable]

Adrian Schneider
11-18-2006, 04:08 AM
Absolute beginning, yes. It will add another row before that one.

adwade
11-18-2006, 04:24 AM
Thanxx!!

Coconut
11-18-2006, 04:31 AM
When a ticket shows as being resolved, how do I go to re-open it? When I click on 'closed', it only says 'Sorry! This thread is closed!'.

Adrian Schneider
11-18-2006, 05:24 AM
You need to set the forum permission which lets users open/close their own threads.

mauro1947
11-20-2006, 12:54 PM
Hi!
I can't use this mod in my vB 3.6.3.
When i installed the first time, works, but, one day, works no more.
I uninstalled and reinstalled, but i can do that this mods works.
Can you help me?
I use BlueSaint style from vbstyles.com (is not the default style)
There is any problem???
Help me, please!
And excuse my english
Bye!

Adrian Schneider
11-21-2006, 02:06 AM
Try re-applying the template edit.

mauro1947
11-21-2006, 09:46 AM
Hi!
Thanks for your answer.
How can i do that? (that you can see i'm totally newbie)
Thanks for your help!!!
Thanks!
Bye!

Adrian Schneider
11-21-2006, 10:28 PM
In the instructions it outlines a template edit you need to make. Just do it again for any styles that aren't working.

mauro1947
11-21-2006, 10:33 PM
Hi!
Thanks!!
When i can probe, i will tell you the results.
Thanks!!!
Bye!

akanevsky
11-21-2006, 11:12 PM
Nice hack, and I'll probably install it at visionscripts, but I am concerned with the fact that some of the plugin code is referring to vBulletin options that do not exist. Also, variables are not properly initialized which causes notice errors at error_reporting(E_ALL) level...

Adrian Schneider
11-22-2006, 12:00 AM
I usually make a strong mental note to init variables, but in this case it doesn't really matter as vBulletin generates around 20 notices per page, and unlike other scenarios - this wouldn't affect functionality. If you want to "fix" it, just edit the "Support Forum - Sort By Open" plugin: find if (in_array($foruminfo['forumid'], $checkForums) and strpos($sqlsortfield, 'lastpost') !== false)
{
$sqlsortfield = "thread.open desc, $sqlsortfield";
$hook_query_where .= ' and thread.open <> 10';
$vbulletin->options['openAtTop'] = true;
}, below it add else
{
$vbulletin->options['openAtTop'] = false;
}

$openThread = 0;
$closedThreads = 0;
$lastOpenStatus = 'zz';

akanevsky
11-22-2006, 02:15 PM
Ok. Also, perhaps you should replace the vBulletin options with a list of IDs with a per-forum bitfield setting...

and where did $vbulletin->options['supportforum_subforums'] come from? It is not in vBulletin options..

also, what is the reason you check for:
strpos($sqlsortfield, 'lastpost') !== false

and for:
!$thread['sticky']

?

Also, perhaps the thread conditional logic is a bit wrong. Maybe it should be this:

<if condition="can_moderate($foruminfo['forumid'], 'canopenclose')">
<if condition="$thread['postuserid'] == $vbulletin->userinfo['userid']">
<strong>Notice:</strong>:
This issue has been resolved! You may re-open it if you are still having problems.
<else />
<strong>Notice</strong>:
This issue has been resolved! The thread starter may re-open it if he wishes.
</if>
<else />
<strong>Notice</strong>:
This issue has been resolved! If you have a similar issue, please create a <a href="newthread.php?$session[sessionurl]f=$foruminfo[forumid]">new thread</a>.
</if>

Adrian Schneider
11-22-2006, 05:34 PM
Wanted to start off simple, as I'm busy with 100 other things. ;)

You're the lucky one to notice the option is missing, Ive been meaning to issue an update but nobody noticed yet lol.

I use strpos because between 3.5 and 3.6 (or something along those lines) they changed that value which broke it on some boards.

I use !$thread['sticky'] because the separator is dependent on the transitions between the different thread types. It should ignore sticky threads or else you'll get a "Closed Issues" header at the very top of your stickies.

My condition is correct. I tested yours and it doesn't work properly.

akanevsky
11-22-2006, 06:04 PM
I use strpos because between 3.5 and 3.6 (or something along those lines) they changed that value which broke it on some boards.

Why check for the value? I removed the check and it seems to work correctly. Why does it matter what the sort is?

I use !$thread['sticky'] because the separator is dependent on the transitions between the different thread types. It should ignore sticky threads or else you'll get a "Closed Issues" header at the very top of your stickies.

That's right, didn't think about it.

My condition is correct. I tested yours and it doesn't work properly.

Yep, it doesn't. But I changed it to the following, and that's what I am using (and it does work properly):

<if condition="$show['supportforum_message']">
<center>
<span class="smallfont">
<strong>
<if condition="$thread['postuserid'] == $vbulletin->userinfo['userid']">
Notice: This issue has been resolved! If you are still experiencing problems, you may reopen the thread.
<else />
<if condition="can_moderate($foruminfo['forumid'], 'canopenclose')">
Notice: This issue has been resolved! The thread may be reopened by the thread starter if he or she is continuing to experience problems.
<else />
Notice: This issue has been resolved! If you are experiencing a similar issue, please create another thread.
</if>
</if>
</strong>
</span>
</center>
<br />
</if>

It is better because if you do not need to call a can_moderate function (and thus avoid an overhead), then why do?

Adrian Schneider
11-22-2006, 06:08 PM
It changes the sort order so that it sorts by sticky, then closed/open, then last post time IF you have it set to last post time (default). They changed it to or from (trying to remember exact values) lastposttime to thread.lastposttime. So it's not required, but I don't want it affecting other sort orders.

That final template looks better.

akanevsky
11-22-2006, 06:14 PM
Well, I removed the strpos bit on my installation because I want it to sort by open/closed first regardless of secondary sort order. :)

If you can make it work with subforums automatically, it would be nice. But to make it flexible (e.g. enable subforum inheritance in some forums but not others) you'll need to make a bitfield-based forum setting... :)

Been Told
11-25-2006, 01:56 PM
Very, very usefull mod. Just installed it and works like a charm!

krazycivik
12-07-2006, 12:31 AM
ok i have a question i have installed this hack but i dont see how it works i might be blind but if you can tell me how would be great ive installed it etc i ahve a forum for support ok now what? im at a losss

im runing vb 3.6.2

sinisterpain
12-19-2006, 11:25 PM
Made template edits as instructed but do not get the open /Closed in the forum I created for suport. Am I missing something in the options as I only have a field for entering the forum ID which I did. And I edited the correct template for the style I am using. Running 3.6.4

Adrian Schneider
12-28-2006, 09:07 PM
Sorry about the delayed update... been super busy.

krazycivik / sinisterpain, are you still having troubles?

sinisterpain
12-28-2006, 09:21 PM
No, I am fine thanks

aquariumpros
12-31-2006, 01:19 AM
Any news on the possibility of the "-Button to open/close thread" addition that was mentioned in the initial post?

Thanks again for an awesome hack!!

Adrian Schneider
12-31-2006, 04:56 AM
It should be released within a day or so. :)

aquariumpros
12-31-2006, 12:46 PM
It should be released within a day or so. :)
Sounds great to me!!

Thanks again!

(lol - I'm AJ - you can't be AJ)... :)

Adrian Schneider
01-02-2007, 12:32 AM
I'll upload it in a few hours...

I won't update the original post with it though, because the changes haven't been thoroughly tested. I'll be out of town for a few days afterwards, so after a good trial run and some possible fixes I will release it officially.

GruntHalo
01-02-2007, 05:11 AM
Thanks this is awesome! :cool:

pds
01-02-2007, 06:49 PM
No, I am fine thanks

Curious what you did to fix, I am runing into the same issue. Hopefully it was something simple I am overlooking.;)

sinisterpain
01-02-2007, 08:18 PM
Curious what you did to fix, I am runing into the same issue. Hopefully it was something simple I am overlooking.;)
Try making a post it should then show the open bar, if you close the thread you will see the close bar

Yorixz
01-18-2007, 04:39 PM
Lovely idea, thanks so much! Using it for my reported posts forum ;)

RedGTiVR6
02-14-2007, 03:00 PM
I've installed this on a hidden sub-form for internal bug reports (once i've gotten it working I will implement it on a sub-forum for all users to report issues)

However, I can't seem to get it working.

I've installed, and I've made the template changes.

I've gone into the settings for the Support forum and added the forum ID.

I've open two threads in that sub-forum, and closed one of them. I don't get a seperator and I don't get the open/closed title either.

I've obviously overlooked something, but I'm not sure what.

Anyone have any ideas? I'm really looking forward to implementing this mod as it would be extremely helpful!

Adrian Schneider
02-14-2007, 03:35 PM
PM me with AdminCP (plugin + options) access and I will take a look for you.

RedGTiVR6
02-14-2007, 09:29 PM
Ok - looks like I've run into a mindless issue.

It all works now.

Turns out I was making the change to one style and checking it in another.

Great mod!

As an FYI for others, I'm planning on using this mod: https://vborg.vbsupport.ru/showthread.php?t=12667

Only having it direct the form to the support forum.

Thanks for the great mod!

Off to mark it as installed!

BreeBears
02-27-2007, 05:28 AM
Installed... Easy as pie and works great - Thankyou!!!

Bree

dbirosel
03-12-2007, 11:48 PM
Ok, i read and saw that i can set any forum to apply this mod on. But what about if i just want moderators, super mods and admins to open and close? This is possible right? If it is, i'll install it and press the install button. Thanks! :)

Bree
03-13-2007, 12:24 AM
I believe (notice the believe - I could be completely wrong) that the mod doesn't actually control the ability of members to open and close a thread... it just basically seperates the threads that are opened and closed... You would need to give your members forum permissions to allow them to open & close threads... or in your case, no permissions to do thus.

I have installed and is working nicely - give me five minutes and I shall test my theory =0)

Cheers, Bree

Bree
03-13-2007, 12:42 AM
Switched one of my mods to Registered user and disallowed Registered users to open and close threads in the forum in which I use the Support Forum Mod setup and nope, she couldn't close a thread =0) Good Deal. Hope that helps, Bree

dbirosel
03-13-2007, 12:44 AM
Sweet this mod will do great for my forum classifieds. Everytime we have a transaction done, we can close the thread easily! Thanks!!!

Bree
03-13-2007, 12:46 AM
Your welcome =0) Creative idea for using this Mod - good job... Think it will work out nicely for yas... Good luck and have fun! Always, Bree

emtee
03-13-2007, 11:45 PM
Anyone tried it on 3.6.5 yet? Is it 3.6.5 compatible? Thanks.

dbirosel
03-14-2007, 01:13 AM
Anyone tried it on 3.6.5 yet? Is it 3.6.5 compatible? Thanks.
Working great for me. :)

Bree
03-14-2007, 05:30 AM
Anyone tried it on 3.6.5 yet? Is it 3.6.5 compatible? Thanks.


Working great for me too =0) -Bree (vB 3.6.5)

Tom_S
03-15-2007, 12:11 PM
I am not seeing anything along the lines of the screenshot included:
http://www.vblogetin.com/images/screenshots/solved_threads.jpg

I see no "Open Issues" or "Closed Issues". I logged in using our test account member and started a new thread and named it "new issue" but it appeared just as another thread in that forum. Nothing special looking about it. All edits were made correctly as I have double and quad checked.
I assigned that forum to the mod and I had no errors with the install. I am using 3.6.5.

What am I doing wrong or missing here?

Thanks in advance...

EDIT:
I do see the Closed Issue after closing a thread but there is not an "Open Issue" statment when opening one. Also I have a concern about giving members the use of open/close their own threads option since this allows them to do that in any forum. Is there a way to limit this to only the support forum?

anywares
03-15-2007, 12:30 PM
I love this :)

Bree
03-16-2007, 01:20 AM
Also I have a concern about giving members the use of open/close their own threads option since this allows them to do that in any forum. Is there a way to limit this to only the support forum?

Yes... In Forum Admin>Forums and Moderators>Forum Permissions... go through and disallow it for every forum but the one you want them to be able to open and close threads in. Hope that helps. Always -Bree

Tom_S
03-16-2007, 08:47 AM
Thanks Bree :up:

kingvillain
03-16-2007, 10:01 AM
Excellent mod this one and very useful. Working perfect on my Vb3.6.5, thankyou :)

WhaLberg
03-16-2007, 10:09 AM
This is really so good SirAdrian, congratulations.

/me will install some weeks later.

Rickeo
03-17-2007, 05:11 PM
Thank you just wot I been looking for ur a star :D

~Rick~

giovannicosta
03-18-2007, 11:31 AM
Great idea, I run www.computerforumz.org which is a compuetr support community so this will help alot!

dbirosel
03-30-2007, 06:08 PM
Problem. When i did a soft delete and then also closed the thread. The seperation of the Open & Closed is gone.

DieselMinded
04-01-2007, 05:47 AM
Thanks Just what I was looking for

DM

inciarco
05-12-2007, 01:13 PM
Magnific Add-On!! :up:

Works Ok With vBulletin 3.6.6!! :up:

:)

wolfe
05-14-2007, 08:49 AM
installed m8 great work :P

Antivirus
05-24-2007, 03:05 PM
Thanks SirAdrian, nice mod! ... and works fine on v3.6.7 PL1.

RedGTiVR6
05-24-2007, 05:21 PM
<if condition="$show['supportforum_message']">
<center>
<span class="smallfont">
<strong>
<if condition="$thread['postuserid'] == $vbulletin->userinfo['userid']">
Notice: This issue has been resolved! If you are still experiencing problems, you may reopen the thread.
<else />
<if condition="can_moderate($foruminfo['forumid'], 'canopenclose')">
Notice: This issue has been resolved! The thread may be reopened by the thread starter if he or she is continuing to experience problems.
<else />
Notice: This issue has been resolved! If you are experiencing a similar issue, please create another thread.
</if>
</if>
</strong>
</span>
</center>
<br />
</if>

If I'm experiencing the double lines for seperate sticky threads with the mod for that installed, is this a fix for it?

Saviour
05-27-2007, 06:42 AM
Mod is not compatible with the following mod:

https://vborg.vbsupport.ru/showthread.php?threadid=117944

I really liked your mod to...it's a shame I can't use it. It would've been a nice addition on my forum.

Adrian Schneider
05-27-2007, 06:45 AM
I believe I posted instructions to fix it... it's been a while, but I may have even added an option for the colspan. If there is, add 1 to it. :)

RedGTiVR6
05-28-2007, 12:19 AM
Alter the 'Separate Sticky and Normal Threads' plugin (forumdisplay_complete), change the initial if block from this: if ($vbulletin->options['gosterx1']toif ($vbulletin->options['gosterx1'] and !$vbulletin->options['openAtTop'])


Found it!

Thanks!

krazycivik
06-08-2007, 12:07 AM
i cant seem to get it to work.. ive installed everything 3 times.. but in my support forum when i close a thread it just says closed and no dividers or anything. ive changed the permisions but nada.. any advise or help?

rsb8940
06-08-2007, 11:45 AM
i cant seem to get it to work.. ive installed everything 3 times.. but in my support forum when i close a thread it just says closed and no dividers or anything. ive changed the permisions but nada.. any advise or help?

Have you set the forum IDs in vBulletin Options | Support Forum? See Attached Screenshots.

RedGTiVR6
07-11-2007, 10:10 PM
is there a way to allow post icons?

In order to assign severity levels to the bugs that are reported, I've created a new set of post icons (numbers 1 - 4) and have allowed them only in the bug reporting forums and are only visible to certain user groups.

The post icon shows in the thread it's self next to the thread title, but it doesn't show in the forum display...if that makes any sense.

Any ideas on how to make this possible?

RedGTiVR6
07-13-2007, 09:25 PM
bump?

EDIT: this appears to be associated with another modification I've installed which allows only certian user groups to see a set of post icons. Please ignore this report.

Censtudios
07-15-2007, 09:15 AM
Really good! I wanted a support script but one that keeps the users on the forums (instead of letting them register on an external support script)

im installing it now

- edit

Hey Im done and it works, exept I dont see any Open Issues and Closed Issues thing... I only see the text in the thread itself that it's closed
http://www.censtudios.com/forumdisplay.php?f=6

no "open issues" and "closed issues"

Also, you seem to be ignoring everybody that's asking this question

I uninstalled this because it doesnt work properly and the support seems to ignore people with this problem

RvG2
07-15-2007, 10:08 AM
hmmmm this is excellent on setting up a support board for non-moderator users reporting mainly on incorrect posts/violations etc etc.

I will install this later on. :)

Seems to be very nice mod. Thanks!

Censtudios
07-15-2007, 10:25 AM
hmmmm this is excellent on setting up a support board for non-moderator users reporting mainly on incorrect posts/violations etc etc.

I will install this later on. :)

Seems to be very nice mod. Thanks!

dont install, it doesnt work correctly

LewisAinslie
07-15-2007, 02:32 PM
Im getting an error when trying to view a ticket

Censtudios
07-15-2007, 03:48 PM
Ticket? what are you talking about

and can someone finally answer my question? im getting pissed off at this

RedGTiVR6
07-15-2007, 04:49 PM
getting pissed doesn't make people want to help...;)

LewisAinslie
07-15-2007, 04:56 PM
Sorry it posted onto the wrong topic by accident

adonfun
07-15-2007, 06:10 PM
Looks like a great mod I can use.

Can anyone confirm if it works with 3.6.7 ?

Censtudios
07-15-2007, 07:31 PM
someone already confirmed it works with 3.6.7 (read the replies before asking)

but somehow people are getting bugged....

(and nobody wants to help them...)

I need help cause ive been looking for this for ages now, finally found it and it doesnt even work....

cameron1991
07-15-2007, 08:37 PM
Great mod! Just wanted to confirm that it works great on VB v 3.6.7

adonfun
07-15-2007, 11:51 PM
Thanks for the confirmation. I must have overlooked it..

SuperTaz
07-16-2007, 08:01 AM
Just what I needed. Thank you. Installed

Derekclarke
08-01-2007, 05:18 PM
how do i set the Groups i want to be able to view the support Tickets?

Adrian Schneider
08-01-2007, 06:55 PM
how do i set the Groups i want to be able to view the support Tickets?
Forum permissions.

DieselMinded
08-23-2007, 06:26 PM
I love this mod And the only thing keeping it from being PERFECT is ......

I Try to keep all the open issues Closed and keep this forum top prority , I find that Im having to contact some of the users to get updates ect.... as they are not closing the threads ect.... And some others who get replys never post again ..

SO I need the system here to automatically Sub Scribe the thread to the thread starter via Instant Email notification when there a post in there thread

How Do I

Thanks

DM

RedGTiVR6
08-24-2007, 01:28 AM
I agree, I'd like to have all users who post in the support forum to be auto subscribed...I run into the same problems...

DieselMinded
08-27-2007, 01:11 AM
Anyone Else ?

skepticality
08-28-2007, 05:16 PM
OK,

I installed, no errors, everything that is NORMAL in my forums works fine... but there are basically NO changes. I double checked the modifications in the templates, I did all of them, they are there. I put the support forum in the options to be only the 1 ID just to make sure, but no matter which forum I am in there is zero change.

I must be doing something wrong... I even went back and made the #1 forum have all the right permissions and everything...

Something else I should look at? :|

You can see the forum I am putting this on here:

http://www.skepticality.com/vboard/

Just to make it work without a question of having the correct forum enabled... I put it on the FIRST forum in the system... Cause, I have always had issues with finding which forum has what number...

D.:confused:

D.

SpeedyHire
08-30-2007, 05:48 AM
would it be possible to get this hack to change the thread title to [Resolved by username] bla bla bla or something like that on the forumdisplay when it is closed and moved to closed thread.

Adrian Schneider
08-30-2007, 05:51 AM
OK,

I installed, no errors, everything that is NORMAL in my forums works fine... but there are basically NO changes. I double checked the modifications in the templates, I did all of them, they are there. I put the support forum in the options to be only the 1 ID just to make sure, but no matter which forum I am in there is zero change.

I must be doing something wrong... I even went back and made the #1 forum have all the right permissions and everything...

Something else I should look at? :|

You can see the forum I am putting this on here:

http://www.skepticality.com/vboard/

Just to make it work without a question of having the correct forum enabled... I put it on the FIRST forum in the system... Cause, I have always had issues with finding which forum has what number...

D.:confused:

D.I don't mind taking a look at it - PM me with AdminCP details if you want me to.

I love this mod And the only thing keeping it from being PERFECT is ......

I Try to keep all the open issues Closed and keep this forum top prority , I find that Im having to contact some of the users to get updates ect.... as they are not closing the threads ect.... And some others who get replys never post again ..

SO I need the system here to automatically Sub Scribe the thread to the thread starter via Instant Email notification when there a post in there thread

How Do I

Thanks

DMwould it be possible to get this hack to change the thread title to [Resolved by username] bla bla bla or something like that on the forumdisplay when it is closed and moved to closed thread.
Sorry guys, I don't plan on taking this hack any further. It was meant to be a simple solution for categorizing posts by status only.

SpeedyHire
08-30-2007, 08:59 AM
ok bud fair enough, will have a word with a firnd of mine who is a coder also see if he can make a few changes for me
nice work btw

LouiseWilson
10-23-2007, 05:02 PM
hi installed works ok but

I've open two threads in a sub-forum, and closed one of them. I don't get a separator and I don't get the open/closed title either.?

can you help at all :)
I am using the latest VB btw and the latest skin

yoyoyoyo
11-05-2007, 09:58 PM
Alter the 'Separate Sticky and Normal Threads' plugin (forumdisplay_complete), change the initial if block from this: if ($vbulletin->options['gosterx1']toif ($vbulletin->options['gosterx1'] and !$vbulletin->options['openAtTop'])

I have the 'Separate Sticky and Normal Threads' plugin installed, so I made the edit on line 36 of the 'Separate Sticky and Normal Threads' plugin and it works great. thanks much

LouiseDM
11-05-2007, 10:19 PM
umm i have that mod installed as well still no luck on any change :(

i get the msgs

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

etetc

its just not separating the closed to open ones

anwar.abdullakh
11-08-2007, 05:58 PM
Oh nice idea...but I have a question...

I have currently this mod installed on my board: https://vborg.vbsupport.ru/showthread.php?t=149214

^^this enables the moderators to mark threads as solved etc...(and it gets auto locked).

I would just like to separate "open issues" from "closed issues"/Solved as shown in the ss. Is it possible??

GrendelKhan{TSU
11-09-2007, 09:21 AM
OK,

I installed, no errors, everything that is NORMAL in my forums works fine... but there are basically NO changes. I double checked the modifications in the templates, I did all of them, they are there. I put the support forum in the options to be only the 1 ID just to make sure, but no matter which forum I am in there is zero change.

I must be doing something wrong... I even went back and made the #1 forum have all the right permissions and everything...

Something else I should look at? :|

You can see the forum I am putting this on here:

http://www.skepticality.com/vboard/

Just to make it work without a question of having the correct forum enabled... I put it on the FIRST forum in the system... Cause, I have always had issues with finding which forum has what number...

D.:confused:

D.

exact same problem. was there a resolution to this?
please post if there was!

I got a brand new boards (not open yet) with few add-ons (prepping it for importing my other boards) :/

3.6.8 patch2

LouiseWilson
11-12-2007, 09:25 AM
Thats what its ment to do but don't abit disappointing, i wish i knew

Antivirus
11-13-2007, 04:43 AM
you won't notice much of a difference either unless you have some open & closed threads in that specific forum

LouiseDM
11-13-2007, 01:51 PM
That's not the point if i wanted that i could just take off the mod and do it normally
If there is any one willing to update this im willing to provide payment to a genuine coder

I would look at it myself but i don't have the time to sit there testing it out

Brandon Sheley
11-13-2007, 04:00 PM
wow, nice hack

I don't see how I let this one slip by..lol

GrendelKhan{TSU
11-14-2007, 04:53 AM
you won't notice much of a difference either unless you have some open & closed threads in that specific forum

I do. I don't see any difference. :(

edit.. AHHHHH. nvm. close a thread and it started showing. :)

LouiseDM
11-15-2007, 09:58 AM
i dont :( think ill go sulk now

pxd
01-20-2008, 11:49 PM
Seems to be working fine on 3.7.0 beta3. Thanks for the mod!

Caerydd
01-23-2008, 12:16 PM
Still love this. So simple and easy to use.

mystic10
02-20-2008, 04:54 PM
i just have one quick question..i love the simplicity but still want to know...i want to change the phrase open issues and closed issues...and want them in diffent color as well...where can i change --the code...not a coder so plz it would be kind if u can let me know

----update---
this is what u look for when u want to change open or close issues to whatever u want

$thread['heading'] = 'Open Issues';
$thread['heading'] = 'Closed Issues';

---need help still---

what do i need to do to change the color.
----end-------

request for future updates:
if color option can be given
ability to change the phrases open and closed issues per thread or make it universal..like setting a defualt

thanks again

bainsey
02-20-2008, 05:26 PM
very nice indeed, thanks.

youradhere4222
02-20-2008, 09:03 PM
Was their ever an update to allow a button for users to close their thread?

I'd like a simpler way for a user to close a thread...

mystic10
02-24-2008, 11:51 PM
please anyone can tell me how to make open issue and close issue in color plz

Black Tiger
03-13-2008, 11:14 PM
I got this tagged, going to try it tonight in the vb 3.7.0 b6 version, I'll keep you informed.:)

By the way.... If I get it working I also would like color issue things like Mystic10.

Black Tiger
03-14-2008, 12:06 AM
Well I'm back, seems to work and I marked *installed*.:D

DieselMinded
05-09-2008, 02:34 AM
I need the threads to close after 10 days with no reply

TIA

jdhf99
05-09-2008, 08:59 PM
I have a question, does this work with vb 3.7 yet?

Edit: Sorry, I installed it and it seems like it's working fine so far...

nocte
06-25-2008, 04:53 PM
This mod does not work with vB 3.6.10 :(

RedGTiVR6
07-15-2008, 01:12 PM
what doesn't work nocte?

nocte
07-15-2008, 07:33 PM
what doesn't work nocte?

It just does not work like it was not installed.

RedGTiVR6
07-15-2008, 07:49 PM
did you activate it via the settings?

nocte
07-16-2008, 02:09 PM
did you activate it via the settings?

Yes, it's still acitvated. It worked untill the update to vB 3.6.10

RedGTiVR6
07-16-2008, 02:42 PM
you might try reading through the thread to see if others had the same issue with 3.6.10.

In my readings I recall running across a few posts, however, since I'm not running 3.6.10, I didn't pay any attention to them.

cbiweb
09-05-2009, 10:53 PM
This might have been asked already but I don't have time to read through 11 pages of posts to find out...

Any chance of a new screenshot, since http://www.vblogetin.com/images/screenshots/solved_threads.jpg is no longer available?

Adrian Schneider
09-18-2009, 03:40 PM
Wow. I forgot I even wrote this. Sorry - I don't have a screenshot, but I'm sure someone here will be able to post a link or take one for you.

What's the demand like for me updating this?

NTMID8
09-19-2009, 12:51 AM
Wow. I forgot I even wrote this. Sorry - I don't have a screenshot, but I'm sure someone here will be able to post a link or take one for you.

What's the demand like for me updating this?

I'd like to see an update!

I.am
01-20-2010, 08:42 AM
I'm interested to have this modification also on vb4, there is a chance to have it?

Thanks

Ted S
01-31-2010, 07:47 AM
I'm interested to have this modification also on vb4, there is a chance to have it?

Thanks

The code behind the mod is fine... just need to change the template output. Something along the lines of:


<vb:if condition="$show['thread_seperator']">
<br /><li style="background-color:#E36E00;color:#ffffff;font-weight:bold;padding:2px;">{vb:raw thread.heading}</li><br />
</vb:if>


At the top of threadbit will work.

midnz
08-02-2010, 09:48 PM
What's the demand like for me updating this?

+1 ... I came here specifically to search for this mod in the hope that it might be updated for 4.0.5.

Danisty
09-17-2010, 06:31 PM
+1 ... I came here specifically to search for this mod in the hope that it might be updated for 4.0.5.I also came here looking for an update.

ozmazdaclub
09-28-2010, 11:38 PM
vb4.0 version would be appreciated.

Adrian Schneider
06-21-2011, 04:58 AM
Who else wants this for vb4?

Akelorian
04-12-2015, 03:18 AM
Has this bee made for VB 4 yet?