PDA

View Full Version : New Posting Features - Mark Threads As 'Solved'


Pages : [1] 2

Eric
06-07-2007, 10:00 PM
3.7 - 3.8 VERSION RELEASED, HERE (https://vborg.vbsupport.ru/showthread.php?t=211020)

What is this!?
This modification will allow you & your members (based on usergroup permissions) to mark a thread as "Solved". It will add the prefix "[SOLVED]" to the thread title, and if set in the admincp - it will also close the thread.

This mod came about, around a year ago - with this thread (https://vborg.vbsupport.ru/showpost.php?p=1054496&postcount=1). But I never released it... until now. :)

Current Version
1.0.1

Features flagged for future version(s):

Thread starter can choose to solve a thread, and input the username of who solved it - that user would recieve rep. points. (admin-configurable amount of rep. points)
Given the above - include count of threads a user has solved in postbit & profile
Possibly figure out a way to automate everything on install - so there are no template edits.

And anything else that is suggested :)

Will this work on x.x.x ??
Unless otherwise stated, this will work on all 3.6 versions. I've not tested this on 3.5, but not much changed from 3.5 to 3.6 in this hack - so it should work on 3.5 as well.

Sounds cool. How do I install?

Extract the zip, you should have the following directories/files (in the "upload" folder):

/
|_ solved.php

/images/
/buttons/
|_ marksolved.gif

/includes/
/xml/
|_ bitfield_solvedthread.xml

Upload the files/folders keeping the same structure.
Import the product, product-solvedthread.xml
Make the following template edits:
SHOWTHREAD

Find:

<if condition="$show['addpoll']">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/addpoll.gif" alt="$vbphrase[add_a_poll]" vspace="1" /> <a href="poll.php?$session[sessionurl]do=newpoll&amp;t=$threadinfo[threadid]">$vbphrase[add_a_poll_to_this_thread]</a></div>
</if>
</div>
<!-- / thread tools -->

Replace with:

<if condition="$show['addpoll']">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/addpoll.gif" alt="$vbphrase[add_a_poll]" vspace="1" /> <a href="poll.php?$session[sessionurl]do=newpoll&amp;t=$threadinfo[threadid]">$vbphrase[add_a_poll_to_this_thread]</a></div>
</if>
<if condition="$show['solvedthread']">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" vspace="1" /> <a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$threadinfo[threadid]">$vbphrase[solvedthread_marksolved]</a></div>
<else />
<if condition="$show['solvedthread_unsolve']">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_markunsolved]" vspace="1" /> <a href="solved.php?$session[sessionurl]do=markunsolved&amp;t=$threadinfo[threadid]">$vbphrase[solvedthread_markunsolved]</a></div>
</if>
</if>
</div>
<!-- / thread tools -->


Find:

<if condition="$show['addpoll']">
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/addpoll.gif" alt="$vbphrase[add_a_poll]" /> <a href="poll.php?$session[sessionurl]do=newpoll&amp;t=$threadinfo[threadid]">$vbphrase[add_a_poll_to_this_thread]</a></td>
</tr>
</if>
<if condition="$show['adminoptions']">

Replace with:

<if condition="$show['addpoll']">
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/addpoll.gif" alt="$vbphrase[add_a_poll]" /> <a href="poll.php?$session[sessionurl]do=newpoll&amp;t=$threadinfo[threadid]">$vbphrase[add_a_poll_to_this_thread]</a></td>
</tr>
</if>
<if condition="$show['solvedthread']">
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" /> <a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$threadinfo[threadid]">$vbphrase[solvedthread_marksolved]</a></td>
</tr>
<else />
<if condition="$show['solvedthread_unsolve']">
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_markunsolved]" /> <a href="solved.php?$session[sessionurl]do=markunsolved&amp;t=$threadinfo[threadid]">$vbphrase[solvedthread_markunsolved]</a></td>
</tr>
</if>
</if>
<if condition="$show['adminoptions']">

Set options in AdminCP > vBulletin Options > Solved Threads
Edit Post / Thread Permissions > Can Mark Threads as Solved for each usergroup.


Upgrading
To 1.0.1


Re-import the product, product-solvedthreads.xml, with "Allow Overwrite" set to yes
Upload and overwrite solved.php
Make the following template edits:
SHOWTHREAD

Find:

<if condition="$show['solvedthread']">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" vspace="1" /> <a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$threadinfo[threadid]">$vbphrase[solvedthread_marksolved]</a></div>
</if>

Replace with:

<if condition="$show['solvedthread']">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" vspace="1" /> <a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$threadinfo[threadid]">$vbphrase[solvedthread_marksolved]</a></div>
</if>
<else />
<if condition="$show['solvedthread_unsolve']">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_markunsolved]" vspace="1" /> <a href="solved.php?$session[sessionurl]do=markunsolved&amp;t=$threadinfo[threadid]">$vbphrase[solvedthread_markunsolved]</a></div>
</if>
</if>


Find:

<if condition="$show['solvedthread']">
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" /> <a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$threadinfo[threadid]">$vbphrase[solvedthread_marksolved]</a></td>
</tr>
</if>

Replace with:

<if condition="$show['solvedthread']">
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" /> <a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$threadinfo[threadid]">$vbphrase[solvedthread_marksolved]</a></td>
</tr>
<else />
<if condition="$show['solvedthread_unsolve']">
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_markunsolved]" /> <a href="solved.php?$session[sessionurl]do=markunsolved&amp;t=$threadinfo[threadid]">$vbphrase[solvedthread_markunsolved]</a></td>
</tr>
</if>
</if>



That's it! Enjoy! :)

Changelog
1.0.1 - July 12, 2007
- Added the ability to unsolve a thread.
- Added the ability to exclude this in certain forums
- Added the ability to change the prefix in that acp

1.0.0 - June 8, 2007
- Initial release.

If you use this modification, please mark as >> INSTALLED (https://vborg.vbsupport.ru/vborg_miscactions.php?do=installhack&threadid=149214) <<, TY!

Eric
06-08-2007, 09:26 AM
Features flagged for future version(s):

Thread starter can choose to solve a thread, and input the username of who solved it - that user would recieve rep. points. (admin-configurable amount of rep. points)
Given the above - include count of threads a user has solved in postbit & profile
Possibly figure out a way to automate everything on install - so there are no template edits.

And anything else that is suggested :)

BBI-Ross
06-08-2007, 09:52 AM
Looks interesting.

Can this be set to only work in certain forum areas?

Cheers

Eric
06-08-2007, 10:06 AM
Looks interesting.

Can this be set to only work in certain forum areas?

Cheers
At the moment, no. But I plan to have it on a per-forum basis in a future version. :)

BBI-Ross
06-08-2007, 10:09 AM
At the moment, no. But I plan to have it on a per-forum basis in a future version. :)

Cheers for your reply, I think I will hold off for the future version :D

Cheers.

Kihon Kata
06-08-2007, 11:43 AM
At the moment, no. But I plan to have it on a per-forum basis in a future version. :)This is what I need. So I'll wait for that.

TheBlackPoet
06-08-2007, 11:49 AM
i installed this.... and it works great... is there a way to unclose a thread for whatever reason??? other than that... i will love this when the time comes to use it..

Installed

Eric
06-08-2007, 11:54 AM
i installed this.... and it works great... is there a way to unclose a thread for whatever reason??? other than that... i will love this when the time comes to use it..

Installed
You can reopen a thread the normal way - but it will still remain as '[SOLVED'].


I'm making a list of features I'll be adding to future versions, any and all suggestions are welcome.
:)

JD45
06-08-2007, 04:20 PM
reserved

I'd like this option as well

Mecho
06-08-2007, 05:00 PM
yea i need this too .. thanks for release but i'm waiting for ur next version too . also that would be great if u can make Installation easier :D

Barteken
06-08-2007, 06:17 PM
is it possible that the author of the thread can mark the thread as solved (for a support forum etc.)
so not only mods . and if possible that the autor can select one of the users who replied (actually solved the problem) and then sign the thread as solved. The member(s) who solved the problem then get extra reputation

ymy
06-08-2007, 08:31 PM
very good and great work

mark as INSTALL

.

rjmjr69
06-09-2007, 12:03 AM
Awesome love it. Will wait for new features though. Thanks keep up the good work.

Eric
06-09-2007, 12:13 AM
is it possible that the author of the thread can mark the thread as solved (for a support forum etc.)
so not only mods . and if possible that the autor can select one of the users who replied (actually solved the problem) and then sign the thread as solved. The member(s) who solved the problem then get extra reputation
Yes, the thread starter can mark their thread as solved, as long as you set the correct usergroup permissions.

As for
and if possible that the autor can select one of the users who replied (actually solved the problem) and then sign the thread as solved. The member(s) who solved the problem then get extra reputation
That's a good idea. Yet another feature going on my list for another version ;)

--

Thanks all :) I'll try to have a new version out soon.

MoMan
06-09-2007, 12:18 AM
Cheers for your reply, I think I will hold off for the future version :D

Cheers.

Yup. As soon as per-forum permissions are a feature, I'm installing this! This is exactly what I've been looking for!

Eric
06-09-2007, 12:43 AM
I've added a list of current planned features in the first post, and the hack details. I'll continue to add to them as I come up with ideas, and as I get your suggestions :)

4x4 Mecca
06-09-2007, 01:53 AM
All of the options on the 2nd post would make me love it even more. How about an installer so we don't have to make the template edits, and when/if we every wanted to remove it, we wouldn't have to re edit the templates?

Any idea when the next release will be out? I know this is brand new, so I'll wait. I'm holding off on installing it until then.

Oh, and a reason to mark something un solved would be on auto forums.. problems that appear solved, but then come right back a day or 2 later.

4x4 Mecca
06-09-2007, 03:12 AM
I would also like the option to use html in the solved text. So I could so something like this
<font color='green'>Solved: </font>

FreshFroot
06-09-2007, 05:11 AM
nice stuff.. but I need it for a specific forum id etc.. hopefully that will be in the next update. Great stuff :)

Hornstar
06-09-2007, 07:27 AM
i like the list of future features. keep it up! nice work.

Eric
06-09-2007, 12:07 PM
Thanks everyone :) Glad people like it.

And thanks for the suggestions 4x4 Mecca, I'm not too sure but allowing HTML, but we'll see.

--
As for a release date on the next version, can't give an exact date. I have many projects going (many of those which are higher up on my priority list) but it shouldn't be too long :)

Monyet
06-09-2007, 05:39 PM
Thank you! really useful :)

Eric
06-11-2007, 08:34 AM
No problem :) - Any other ideas/suggestions? I'm going to start on the next version toward the end of this week. ;)

fox3nova
06-11-2007, 09:08 AM
Would you mind take a consideration about conbining Thread Prefixes (https://vborg.vbsupport.ru/showthread.php?t=123033) that not change the title to [solved].
Instead by change the Thread Prefixes may more useful~

Sofia
06-11-2007, 12:06 PM
Thanks a lot for your hack :)

Greek Wizard
06-12-2007, 02:52 AM
I will also wait for it to be per forum also, as I would love to use this with the Support Forum hack found here:

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

DeiseHost
06-12-2007, 02:43 PM
Excellent Mod.

4x4 Mecca
06-12-2007, 04:15 PM
Would you mind take a consideration about conbining Thread Prefixes (https://vborg.vbsupport.ru/showthread.php?t=123033) that not change the title to [solved].
Instead by change the Thread Prefixes may more useful~
I wouldn't want the thread prefix changed, because I use them to classify what the thread is about, for example, engine trouble, transmission trouble, and if a user searches for all transmission trouble threads, and some were changed to solved, they wouldn't find them in the search results.

fox3nova
06-12-2007, 08:42 PM
for example, engine trouble, transmission trouble, and if a user searches for all transmission trouble threads, and some were changed to solved, they wouldn't find them in the search results.

OH~ I see, your comment is very useful to me to change my mind.
I think you are right, thank you:)

Ophelia
06-13-2007, 12:31 AM
I installed this, it shows up in the thread tools, however, when I click on the "mark as solved" it goes to a blank page.

http://www.mysite.com/forum/solved.php?do=marksolved&t=10

The page is titled as New Page 1

I check and nothing has been remarked. Any idea what I did wrong?

Eric
06-13-2007, 02:43 AM
I installed this, it shows up in the thread tools, however, when I click on the "mark as solved" it goes to a blank page.

http://www.mysite.com/forum/solved.php?do=marksolved&t=10

The page is titled as New Page 1

I check and nothing has been remarked. Any idea what I did wrong?
What vBulletin version are you using? Did you complete all the install steps?

MSheraz86
06-13-2007, 04:16 PM
Handy mod!

Thanks

Clicked Installed :)

bc3tech
06-13-2007, 07:52 PM
At the moment, no. But I plan to have it on a per-forum basis in a future version. :)
looking forward to this! *installed

Ophelia
06-14-2007, 01:25 AM
What vBulletin version are you using? Did you complete all the install steps?

I am running 3.6.7 PL

I did do all the steps..


Took care of SHOWTHREAD

<if condition="$show['addpoll']">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/addpoll.gif" alt="$vbphrase[add_a_poll]" vspace="1" /> <a href="poll.php?$session[sessionurl]do=newpoll&amp;t=$threadinfo[threadid]">$vbphrase[add_a_poll_to_this_thread]</a></div>

</if>
<if condition="$show['solvedthread']">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" vspace="1" /> <a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$threadinfo[threadid]">$vbphrase[solvedthread_marksolved]</a></div>

</if>
</div>
<!-- / thread tools -->

and

<if condition="$show['addpoll']">
<tr>

<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/addpoll.gif" alt="$vbphrase[add_a_poll]" /> <a href="poll.php?$session[sessionurl]do=newpoll&amp;t=$threadinfo[threadid]">$vbphrase[add_a_poll_to_this_thread]</a></td>

</tr>
</if>
<if condition="$show['solvedthread']">
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" /> <a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$threadinfo[threadid]">$vbphrase[solvedthread_marksolved]</a></td>

</tr>
</if>
<if condition="$show['adminoptions']">

http://img.photobucket.com/albums/0903/Stacy_1009/aaa_01.jpg
https://vborg.vbsupport.ru/
https://vborg.vbsupport.ru/

See anything I missed?

Fungsten
06-14-2007, 08:09 PM
Groovy.

fox3nova
06-15-2007, 07:44 AM
Can you let the Solved function work only in specific forum ID

Eric
06-16-2007, 03:02 AM
Can you let the Solved function work only in specific forum ID
Not yet. But it'll be possible in the next version.

Eric
06-16-2007, 03:03 AM
I am running 3.6.7 PL

I did do all the steps..


Took care of SHOWTHREAD

<if condition="$show['addpoll']">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/addpoll.gif" alt="$vbphrase[add_a_poll]" vspace="1" /> <a href="poll.php?$session[sessionurl]do=newpoll&amp;t=$threadinfo[threadid]">$vbphrase[add_a_poll_to_this_thread]</a></div>

</if>
<if condition="$show['solvedthread']">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" vspace="1" /> <a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$threadinfo[threadid]">$vbphrase[solvedthread_marksolved]</a></div>

</if>
</div>
<!-- / thread tools -->

and

<if condition="$show['addpoll']">
<tr>

<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/addpoll.gif" alt="$vbphrase[add_a_poll]" /> <a href="poll.php?$session[sessionurl]do=newpoll&amp;t=$threadinfo[threadid]">$vbphrase[add_a_poll_to_this_thread]</a></td>

</tr>
</if>
<if condition="$show['solvedthread']">
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" /> <a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$threadinfo[threadid]">$vbphrase[solvedthread_marksolved]</a></td>

</tr>
</if>
<if condition="$show['adminoptions']">

http://img.photobucket.com/albums/0903/Stacy_1009/aaa_01.jpg
http://img.photobucket.com/albums/0903/Stacy_1009/aaa_02.jpg
http://img.photobucket.com/albums/0903/Stacy_1009/aaa_03.jpg

See anything I missed?
Looks like you have everything, not sure what could be causing the blank page atm - you're the only one who has this problem afaik.

4x4 Mecca
06-19-2007, 07:05 PM
I still check this thread daily for the updates. I hope you haven't forgotten about them :) I would love to be able to use the extra options. Thanks SecondV!

Eric
06-20-2007, 11:01 PM
I've not forgotten, just a tad busy is all - there will be updates though.

butty
06-21-2007, 01:20 AM
this is great. at first i thought that say my regged members i set to be able to solve threads that they would be able to solev any thread. i then realised they can only do this to there own thread. perfect!! :D

is there a way i can put a bigger button maybe in the thread starters first post for them to click when its solved? being in the thread tools menu is a bit out of the way and there not getting solved by my members only the mod crew

any help appreciated and congrats on a bob on plugin, cant wait for the next version with added rep points!! :)

4x4 Mecca
06-21-2007, 05:16 AM
I've not forgotten, just a tad busy is all - there will be updates though.
Awesome, thanks for the updates.

danrak
06-21-2007, 10:47 AM
Is there a way for the registered usergroup to limit the ability to mark threads solved to only threads they started, while still having mods and other staff members marking other threads solved?

butty
06-21-2007, 03:08 PM
Is there a way for the registered usergroup to limit the ability to mark threads solved to only threads they started, while still having mods and other staff members marking other threads solved?

this is already how it works mate, i think it goes off if the user has permission to edit there own post or in the case of mods etc others too so it works like that already! :)

tillcat5
06-26-2007, 04:52 PM
Looks like you have everything, not sure what could be causing the blank page atm - you're the only one who has this problem afaik.


having same probs.. i do all the steps when i go to usergroups to there is nothing there to click. Any ideas? and no solved on the dropdown box.. I really like this just want it to work lol

edit: i was able to get the usergroup part fixed.. still nothign in dropdown box.. help please

RVM
06-27-2007, 03:43 AM
When I try to mark the thread as solved, it won't mark it solved, I get error 404 :confused:

Scooterpig
06-27-2007, 07:48 AM
Good idea and looks good although will wait till better install hopefully in next version.

I'd also like to see the option of adding an image to a solved thread as I've seen a tick used once the thread is solved and makes it easier to read down the list of solved & unsolved threads..:)

falbinali
06-30-2007, 09:24 PM
I'd also like to see the option of adding an image to a solved thread as I've seen a tick used once the thread is solved and makes it easier to read down the list of solved & unsolved threads..:)

Love this idea about adding a tick..would be very useful as well!

4x4 Mecca
06-30-2007, 09:29 PM
Still love this mod, even though it's not updated. :)

Terrasoft
07-03-2007, 09:15 PM
Im waiting for the certain forums to be enabled feature. Marked *INSTALLED* to get updates.

4x4 Mecca
07-04-2007, 12:26 AM
Hey SecondV. I know $10 isn't much, but I'll send it via paypal if you can do all the updates mentioned earlier :)

Eric
07-04-2007, 03:18 AM
Still busy with many projects, I've got the updates slated for this weekend / mid of next week. (hopefully)

Btw, $ isn't needed - unless you just really like this hack and feel compelled to ;)

4x4 Mecca
07-04-2007, 03:46 AM
Money sent. Thanks again.

AScherff
07-04-2007, 06:17 AM
great ! installed..

One wish: only owner, initiator of thread can mark as solved...

AScherff
07-04-2007, 06:44 AM
sorry doublepost

Eric
07-04-2007, 06:09 PM
great ! installed..

One wish: only owner, initiator of thread can mark as solved...

It's already setup that way. But like any thread - admins or moderators (with correct permissions) can do the same.

Eric
07-04-2007, 06:10 PM
Money sent. Thanks again.

:o thanks! :) I'll try to get this update out as I said earlier ;)

mrahul
07-05-2007, 06:42 AM
can this be turned on to certain forums alone ?

Eric
07-05-2007, 08:32 PM
can this be turned on to certain forums alone ?
That's a feature planned for the next version... read the mod description in it's entirety ;)

Peter Armenti
07-05-2007, 09:32 PM
definitely interested in this mod... will it be easy to revert when the new version comes out?? I think I should wait.. can you keep me posted? Thanks

gassio
07-08-2007, 06:28 AM
sorry, double post...

gassio
07-08-2007, 06:28 AM
When I try to mark the thread as solved, it won't mark it solved, I get error 404 :confused:

I have similar (or the same?) problem. I have no idea about coding etc. but it seems that hack wants to use "solved.php" script which is not present im my forums directory...
this is what shows in my browser address after trying to mark solved:
forumsdirectory/solved.php?do=marksolved&t=5

so i think it wants to use solved.php but it is not there...

I imported product and made necessary template changes.

Eric
07-08-2007, 04:51 PM
I have similar (or the same?) problem. I have no idea about coding etc. but it seems that hack wants to use "solved.php" script which is not present im my forums directory...
this is what shows in my browser address after trying to mark solved:
forumsdirectory/solved.php?do=marksolved&t=5

so i think it wants to use soled.php but it is not there...

I imported product and made necessary template changes.
solved.php is included in the zip.

Eric
07-08-2007, 04:52 PM
definitely interested in this mod... will it be easy to revert when the new version comes out?? I think I should wait.. can you keep me posted? Thanks
The new version won't alter the thread title (in the database) to add "[SOLVED]" or whatever prefix you choose. It'll be done differently, so you might want to wait ;)

gassio
07-08-2007, 05:11 PM
solved.php is included in the zip.
ok :) my bad, thx

mrahul
07-09-2007, 06:36 AM
That's a feature planned for the next version... read the mod description in it's entirety ;)

kool. Will wait for next release :) else everywhere solved will show up in my forum :rofl:

Invalid ID
07-09-2007, 04:55 PM
Great Mod

gregfindley
07-10-2007, 05:30 PM
Hi, installed this mod, all seems to be working fine, except for the fact its marking threads as closed when I have selected for it not to do so. It replaces the reply button within the thread with 'thread closed' button, even though when you click thread closed it takes you to the reply form!? Confusing!!!

Any ideas on how to sort this much appreciated!
My forum is www.ChessForums.org

(You can see a 'thread closed' solved thread in the feedback section)
Thanks
Greg

Eric
07-10-2007, 06:15 PM
Hi, installed this mod, all seems to be working fine, except for the fact its marking threads as closed when I have selected for it not to do so. It replaces the reply button within the thread with 'thread closed' button, even though when you click thread closed it takes you to the reply form!? Confusing!!!

Any ideas on how to sort this much appreciated!
My forum is www.ChessForums.org

(You can see a 'thread closed' solved thread in the feedback section)
Thanks
Greg
Hmm, interesting. I'll look into that and.. if you're an admin / mod that has powers in said forum - you can reply to closed threads ;) Regular users will see " Sorry! This thread is closed!"

Eric
07-10-2007, 11:08 PM
A question before I start working on the new version, in the next few days.

On the "per forum" option, would you rather:

1.) Have an option in the mod settings to enter forumid's you WANT this ENABLED in
2.) Have an option in the mod settings to enter forumid's you WANT this DISABLED in
3.) Have an option in each forum's edit/creation page to enable / disable (if you have alot of forums, this could be time consuming)

4x4 Mecca
07-10-2007, 11:12 PM
I'm thinking an option on which forums to enable it on. I have about 20-30 forums, but only need it on 5 or so.

karel1985
07-11-2007, 09:13 AM
Hello SecondV

your mod look very good, and i will instal i sure if there is an option to mark it UNsolved to
I saw a similar mod on a another site and i really like it, unfortunaly the mod is not released and owner don't want to share.

here is the example:
http://www.helpmij.nl/forum/showthread.php?t=305750

at the botton u see:

Status van de vraag (status of the question)
Vraag is opgelost (question is solved)
Vraag is niet opgelost (question is unsolved)

By default when the user makes a new thread the topic is marked as unsolved. and only the topic starter can change it or mods or admin by clicking 'question is solved' (based on perimission prob.)

at the forum display it looks like this:

http://www.helpmij.nl/forum/forumdisplay.php?f=115

there is a sepparated collumn thats shows the status. In place of words here its an image.

So this looks very good and works nice :-)
i even want to pay it if u could get something like this.

karel

Eric
07-12-2007, 07:24 PM
I'm thinking an option on which forums to enable it on. I have about 20-30 forums, but only need it on 5 or so.
That sounds good. I should have a new version out in a few hours.

:)

4x4 Mecca
07-12-2007, 08:34 PM
I'll be here! lol.

Eric
07-12-2007, 10:10 PM
Updated to 1.0.1

4x4 Mecca
07-12-2007, 11:09 PM
I'm back! Thanks. Downloading it now, then eating dinner.. lol, in that order.

4x4 Mecca
07-12-2007, 11:19 PM
That sounds good. I should have a new version out in a few hours.

:)
The version I just installed has the exclude option, not include... is this how it will be for the final version? Is this the final version?

Eric
07-12-2007, 11:30 PM
The version I just installed has the exclude option, not include... is this how it will be for the final version? Is this the final version?
I'll see about changing that over to 'include' some time, but after some thought - the 'exclude' seemed like the best option.

4x4 Mecca
07-13-2007, 12:07 AM
No problem, I can add all the forums, I wasn't sure if you did it that way by mistake after the question or if you intended to do it. You can leave it how it is. :)

Terrasoft
07-13-2007, 12:45 AM
Glad to see the update! Testing it out right now. >_0

4x4 Mecca
07-13-2007, 02:48 AM
Are the updates with specifying who helped solve it still possible? And that user getting points?

Eric
07-13-2007, 02:58 AM
Glad to see the update! Testing it out right now. >_0
:)

Are the updates with specifying who helped solve it still possible? And that user getting points?
Will still be possible, just didn't have the time on this update to include it.

4x4 Mecca
07-13-2007, 03:04 AM
No problem. I appreciate all you've done so far!

fox3nova
07-13-2007, 03:23 AM
good job! I love it~

4x4 Mecca
07-13-2007, 04:38 AM
I'm trying to edit my postbit_legacy and put the solved button next to the other buttons in the bottoms of the posts. However, they don't work down there. Is there a reason you can think of, or should it be as simple as pasting the conditionals down there to display the buttons?

mred
07-13-2007, 09:49 AM
I'm very interested in this modification for use in our big forum (www.rc-forum.de).
I am looking forward to the future planned features. The idea with the reputation system is great. I will install this mod at the weekend.

Thanks for that helpful modification.

Eric
07-13-2007, 06:27 PM
I'm trying to edit my postbit_legacy and put the solved button next to the other buttons in the bottoms of the posts. However, they don't work down there. Is there a reason you can think of, or should it be as simple as pasting the conditionals down there to display the buttons?

I don't mess with postbit much, but this hack uses $thread and $threadinfo for everything. Postbit *should* be $post

Eric
07-13-2007, 06:28 PM
I'm very interested in this modification for use in our big forum (www.rc-forum.de).
I am looking forward to the future planned features. The idea with the reputation system is great. I will install this mod at the weekend.

Thanks for that helpful modification.
:) No problem.

StrifeX
07-13-2007, 09:15 PM
How about changing the plugin options to select which forums to include SOLVED threads instead of excluded forums.

mred
07-13-2007, 10:20 PM
How about changing the plugin options to select which forums to include SOLVED threads instead of excluded forums.

Both would be great. Someone have a lot of forums to exclude and others to include ;)

mred
07-13-2007, 10:39 PM
I see a problem with solved threads - if a thread is unsolved and a moderator or administrator close that thread because of any important reason, the thread opener can reopen it with using the button 'unsolve thread'.

Could that problem be solved?

mred
07-13-2007, 10:53 PM
Sorry, again ..

If you delete the prefix of a solved thread in case of moderation or what else ever you will get an inconsistency and the threadstarter will get an error if he tries to unsolve that thread.

any idea?

Invalid ID
07-15-2007, 03:24 AM
Welcome the upgrade. Please specify what steps do I take to upgrade. Thanks

4x4 Mecca
07-15-2007, 04:25 AM
Invalid ID, it's in the first post, there is a section titled upgrading :)

4x4 Mecca
07-15-2007, 04:36 AM
I don't mess with postbit much, but this hack uses $thread and $threadinfo for everything. Postbit *should* be $post
That worked great, it shows up when I use this

<a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$post[threadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" /></a>
But I can not get the conditionals to work, like this.

<if condition="$show['solvedthread']">

<a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$post[threadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" /></a>
<else />
<if condition="$show['solvedthread_unsolve']">
<a href="solved.php?$session[sessionurl]do=markunsolved&amp;t=$post[threadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_markunsolved]" /></a>
</if>
any idea how to get that working?

Eric
07-15-2007, 05:13 AM
That worked great, it shows up when I use this

<a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$post[threadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" /></a>
But I can not get the conditionals to work, like this.

<if condition="$show['solvedthread']">

<a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$post[threadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" /></a>
<else />
<if condition="$show['solvedthread_unsolve']">
<a href="solved.php?$session[sessionurl]do=markunsolved&amp;t=$post[threadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_markunsolved]" /></a>
</if>
any idea how to get that working?
That's because the plugin uses the 'showthread_complete' hook. You could change it to 'showthread_start', should work then.

Welcome the upgrade. Please specify what steps do I take to upgrade. Thanks
Upgrade instructions are in the first post, and the 'install.html' in the zip.

Sorry, again ..

If you delete the prefix of a solved thread in case of moderation or what else ever you will get an inconsistency and the threadstarter will get an error if he tries to unsolve that thread.

any idea?
I use substr to remove the thread prefix when it's unsolved, that could be causing the error. I'll take a look into it.

I see a problem with solved threads - if a thread is unsolved and a moderator or administrator close that thread because of any important reason, the thread opener can reopen it with using the button 'unsolve thread'.

Could that problem be solved?
I'll fix that in the next release.

mred
07-15-2007, 02:05 PM
Great, thanks :up:

Only an idea, can you use the prefix from "Thread Prefix (https://vborg.vbsupport.ru/showthread.php?t=123033)"?

Invalid ID
07-15-2007, 03:13 PM
Invalid ID, it's in the first post, there is a section titled upgrading :)

Noticed. Thanks a lot :)

HaMaDa4eVeR
07-17-2007, 12:33 PM
I'll be gratfull if you give me the product that compatable with 3.5.7 or 3.5 series

4x4 Mecca
07-17-2007, 08:33 PM
I tried getting this to show in the threadbit template
<if condition="$thread['issolved']"><font color="green" size="1">(Solved)</font></if>
but it doesn't show, any idea how to get this to show next to the treads? I have it in the right part, but the code doesn't pull the rigth results.

4x4 Mecca
07-17-2007, 09:54 PM
never mind, I got it. Thanks anyway :)

karel1985
08-06-2007, 03:39 PM
installed and nominated

Kai77
08-07-2007, 07:05 AM
It would be awesome if you also could mark the specific post that gives the solution as "solving post" so users can find the solution more quickly.

flindersredclaw
08-07-2007, 08:17 AM
It does work on 3.6.8 - Thanks!

Eric
08-07-2007, 05:42 PM
It would be awesome if you also could mark the specific post that gives the solution as "solving post" so users can find the solution more quickly.
Interesting.. not a bad idea. Sorta like Experts Exchange does.

sandbender
08-09-2007, 06:59 AM
Nice! Installed & working, but really need thread starter only ability.

Anxiously awaiting
"Thread starter can choose to solve a thread, and input the username of who solved it - that user would recieve rep. points. (admin-configurable amount of rep. points)"

Eric
08-09-2007, 07:24 PM
Nice! Installed & working, but really need thread starter only ability.

Anxiously awaiting
"Thread starter can choose to solve a thread, and input the username of who solved it - that user would recieve rep. points. (admin-configurable amount of rep. points)"
> but really need thread starter only ability.

It's already that way, but Admin's or Moderators of said forum can solve/un-solve as well, just like they can do other actions with any other thread...

sandbender
08-10-2007, 11:35 AM
Duh! Thanks. When I tested it, I was logged in as admin, and as guest I can't even access those forums I use it in.

Very nice work!

4x4 Mecca
08-11-2007, 03:01 AM
Any chance on updating it to allow a thread solver?

djilou
08-12-2007, 11:56 AM
Moderator can't solve threads within a forum if he is not the moderator of this forum!

Mecho
08-14-2007, 09:15 AM
sounds great .. but i have a question . i'm using thread prefixes mod and i made 2 prefix for one section , named resolved and request ! so how it works : mods should edit user's post and change the prefix from request to resolved . so i'm wondering this way that i'm using is better for use less loading from server and .. or this mod that u publish ??

Thanks

paulvon
08-16-2007, 12:04 AM
The concept is great.

I followed the instructions and tried an install in 3.6.8.

I do see the "Solved Threads" in the vBulletin Options and have configured it. With no forums excluded.

The problem is
There is no sign of the mod in the Post / Thread Permissions panel.

There is no sign of the ability to mark as solved on the threads.

Do you have any ideas?

Thank you

flickerbox
08-18-2007, 02:52 AM
We have not been able to get this to work. 3.6.7P1
Same problem as paulvon-
No sign of the ability to mark as solved on threads, and no sign in Posts/Thread permisisons panel.

Any update on this?

Wheezy
08-31-2007, 12:25 AM
Im having the same problem... its not showing up under "thread tools" OR under usuergroup options in the AdminCP.

Eric
08-31-2007, 01:33 AM
Are you all, that's having these problems, sure you uploaded EVERY file? Get any errors on product intsall?

Wheezy
08-31-2007, 03:10 PM
Ive uploaded the entire "upload" folder and its contents to my root directory, made all the template edits correctly (no errors on install though), and its still not showing up.

Nathan2006
09-01-2007, 08:59 PM
Thank you SecondV

Works great! :D

Install

Eric
09-12-2007, 10:14 AM
Since I will be starting a new job soon, I will not have any time to work on my modifications.
Therefore, anyone who wants to take my modification(s) and build/improve them further, are free to do so.
All I ask is you give proper credit.

dethfire
09-12-2007, 10:30 PM
can the solved prefix be added only to forum view, I don't want to mess with thread title because of google. also can people who can mark a thread be changed via usergroup?

soulweaver
09-13-2007, 01:04 AM
Is there any way to have more than one option to choose such as having solved and tested. I run a gaming sites and I want solved for the staff apps, requests, and site feedbacks, and tested for codes? If you can help i would appreciate it.

dethfire
09-14-2007, 12:02 AM
if I set a usergroup to have mark as solved permission and set a user to have that usergroup as secondary, it will not show for that user, any ideas?

yoyoyoyo
09-14-2007, 04:12 AM
I am having a problem - I did the edits indicated, and am getting this error in thread tools:

http://img503.imageshack.us/img503/7810/errorvl4.jpg

the option to mark the thread as solved is showing up twice - any suggestions?

soulweaver
09-14-2007, 10:28 PM
I believe this came with an installer i didn't do some of the templete edits caz they were all ready there but i'm not the creator so thats my suggestion yoyoyoyo

wickedstangs
09-16-2007, 12:30 AM
Very Nice mod comes in handy...

JohnBee
09-17-2007, 09:56 PM
Installed and loving it! - thanks

yoyoyoyo
09-23-2007, 03:52 PM
I believe this came with an installer i didn't do some of the templete edits caz they were all ready there but i'm not the creator so thats my suggestion yoyoyoyoI undid the template edits, but then the option to "mark as solved" disappeared from the thread tools. Oh well... nice idea - guess I will have to mark as solved manually.

donnacha
09-24-2007, 05:54 PM
Great idea but not working with 3.6.8 - all files uploaded and edits to SHOWTHREAD made correctly, double-checked everything.

bigcurt
10-02-2007, 11:47 PM
I got this working by just messing around with the template edits..there are quite a few things wrong. If you guys like I can post my code..as long as the coder doesn't get mad.

mauro1947
10-05-2007, 04:57 PM
Two bugs:

When a post have an attachment, is not merged with next one.
When a post have a title with special characters like "/" is bad renamed.

Thanks
Regards!

ScottRowan
10-05-2007, 07:27 PM
Hi,

I really like this mod and could use it, but can you change "solved" to like "complete", "in progress" and other different names?

Its just I wanna give it to my GFX Request team, so when people request gfx then they can tag the topics like:

Killswitch Engage Sig Anyone?

then they can change it to:

[TAKEN]Killswitch Engage Sig Anyone?

then

[COMPLETE]Killswitch Engage Sig Anyone?

or

[DENIED]Killswitch Engage Sig Anyone?

etc etc...

How could I add more than one Solved as and change the name on it?

wluther
10-06-2007, 11:04 AM
I have used this mod, without any problems, since it was released. I am in a similar situation as Mr. Rowan above, and I am also wondering how to make several different names/tags available for different forums.

Also, I would like to know, if possible, how to add the "Marked Solved" option to the "Forum Tools" and/or "Moderation" drop down box(es) to make it possible to mark multiple threads "Solved/TAKEN/COMPLETE/DENIED/etc..." all at once. Similar to the way you can select all the threads, and then open or close them.

If either of the above two requests have already been created, then could you please tell me where, and if not, then could you please tell me how to do it.

Thank you.

nickypoooo
10-13-2007, 05:16 PM
I Was wondring how I can move Marked "Solved" to another forum category.

Thank you

Fungsten
10-15-2007, 08:23 PM
I Was wondring how I can move Marked "Solved" to another forum category.

Thank you

Good question!!!

manofphat
11-05-2007, 09:00 PM
I Was wondring how I can move Marked "Solved" to another forum category.

Thank you

Good question!!!

Check out the Support Forums (https://vborg.vbsupport.ru/showthread.php?t=129737) add-on

Fungsten
11-05-2007, 09:19 PM
Check out the Support Forums (https://vborg.vbsupport.ru/showthread.php?t=129737) add-on

:up:

manofphat
11-05-2007, 10:42 PM
Try rebuilding your bitfields

admincp/index.php?do=buildbitfields

yoyoyoyo
11-05-2007, 10:47 PM
thanks much - works great

Munzo
11-06-2007, 12:40 AM
Does this work with version 3.6.8?

yoyoyoyo
11-06-2007, 02:56 AM
Does this work with version 3.6.8?
It works fine in 3.6.8

Here is a TMS (template modification system) XML file, for those that have TMS installed. Just upload the XML via TMS and it takes care of the necessary template edits for you automatically.

anwar.abdullakh
11-08-2007, 06:00 PM
this one has worked great for me...
While i was browsing I encountered the following modification: https://vborg.vbsupport.ru/showthread.php?t=129737

Is it possible to separate "open issues" from "closed issues" as shown in the ss. Is it possible??

ludachris
11-21-2007, 02:14 PM
Anyway to add the ability to give certain usergroups (non mods) the ability to mark someone else's thread as solved? This is due to the fact that many people won't come back to mark their own thread as solved all the time. I'd like to give the site leaders the ability to do it for them.

Also, how about being able to search only [solved] threads? That would extremely useful.

ludachris
11-21-2007, 10:44 PM
So I just installed this today and found that the thread title get's messed up if there are quotes in it. I'm using vbseo so I'm not sure if it's affecting it.

buurman
11-22-2007, 10:27 AM
Using this for a few weeks now, and like it!
Is it possible to instead of changing the title, to add a image at top of the post?
And have two choices, solved and unsolveable?
I cant seem to find out..

Jase2
12-25-2007, 04:04 PM
Just what I was looking for. I do hope someone can carry this mod going for a very long time. :)

Regards Jason :)

Mecho
12-27-2007, 09:12 AM
Love Features flagged for future version(s) ..... plz try to add those options and update this great hack .

thanks

Jase2
12-29-2007, 01:45 PM
This works with 3.7.0 beta 3.

Regards Jason :)

Jase2
01-06-2008, 01:48 PM
Great hack and works, I just use the basic code, which is to have mark threads solved.

I`ll be working on this hack for all future versions and will keep it going for a very long time.

Regards Jason :)

kafi
01-06-2008, 04:25 PM
Jase2 are you picking up this add-on?

I wish there is somebody willing to do so. It is great add-on, but I am afraid to install abonded add-on because it will not work in future version and then what...

To do list for this add-on is even better, but again it is worthless without future developements and upgrades ...

Thomas P
01-07-2008, 12:58 PM
@Jase: Great news - can you have a look into the issue regarding the special characters like quotes or the dash?

Jase2
01-07-2008, 01:51 PM
I will have to think about it. I`m only currently working on making it simply mark threads solved. However, if there are enough people who want future requests, then I`ll look into it.

I have a computer site @ www.techsupportteam.org that`s why I`ll be keeping this add on going.

Regards Jason :)

buurman
01-22-2008, 08:14 AM
Jase, it would be great if you could keep this module going!

Is it possible to do a request?

Right now the title is changed by marking it "solved"

What do I need to change to not change the title, but add a image ([IMG]) to the top of the first post?

This way, if the post is solved, there will be a image in the first post stating "SOLVED" or any other custom image.

I cant seem to find out what the code is for adding tekst to the thread instead of the title.

Black Tiger
02-21-2008, 04:04 PM
I have this mod tagged, seems very fine, but I have a few questions first.
1.) Will this also run in 3.7? Anybody tried that already?
2.) Is it possible to change fewer templates some way so the mod only works on 1 or a few forums which you select? Because I don't want it to be a forum-wide option. I know of the exclude option.
3.) I second the request Buurman just made.:)

Jase2
02-21-2008, 04:16 PM
3.7 HERE (https://vborg.vbsupport.ru/showthread.php?t=169446).

Regards Jason :)

Hannan
03-25-2008, 11:50 PM
Thanks for the good Hack. could anyone tell me how I can add color to this option. like red

Black Tiger
03-26-2008, 12:14 AM
@Jase2: Thanks but that's in the mod graveyard, had that tagged too.
However too much template edits, seems to me this must be also possible to be done with the plugin system.
Otherwise I have to use the TMS system, but I'll wait for a better version.:)

Eric
03-27-2008, 12:39 AM
I've already PM'ed Marco, and I no longer work on this MOD, but figured I'd need to post something publicly.

I don't know who is complaining, but I AM the original author of this modification. All of my MODs are original work by me.

harlita
03-27-2008, 09:04 PM
alright i just have one question.

I am kinda new with the whole installing mod situation so please be easy on me..but for the instructions of installing you say to

1. extract the zip(did that)
2..Upload the folders keeping the same structure(where do I upload the folder?)
3.Import the xml. (ok ive imported xmls before for themes/skins but is there a different place to upload xmls for mods)

everything else i pretty much understand except two and three

Black Tiger
03-28-2008, 12:29 AM
2.) FTP it to your forums on your web.
You don't upload the directory called "upload" if present, but the content in that directory. The directory structure of vBulletin is kept, so upload the files in the directory's named.
So files in the admincp folder should be uploaded to your forums admincp folder etc.

3.) It could be that xml files for mods have to be uploaded, but then they are in the folder structure of the files to be uploaded.
Normaliter if it's said the xml file should be imported, it must be done the normal way via the plugins and products part in the Admincp.

harlita
03-28-2008, 06:30 AM
=)

Thank you for your kind reply and I apologize for the confusion. There is actually two of us working on installing the hacks so we're both having to use my login since, to my understanding- vbulletin.org is one account login per vbulletin license- even though we're building out the same site.

A plugin version would be cool, but in my opinion it's a pretty easy install - minus the having to edit each individual template. I don't know any way around that other than to make all themes children of a parent theme XD and that would just lead to bad things.

Also may want to call out (though most the time it's assumed) that the button image is called to in the stylever, not a direct image source - so if the theme you are using has it's buttons in it's own image folder, you'll need to copy the provided button image (and thank you for providing one) to those directories as well. etc etc\

But no worries. So I've gone ahead and installed the hack on both my vbull forums and can confirm it works fine with 3.6.8

Snatch
03-31-2008, 04:36 AM
Is there a version for 3.7?

casperl
03-31-2008, 09:21 AM
Mark threads ‘solved’ Version: 1.0.3

Nice plug-in actually. But I would like to make a suggestion there. When a user of a forum clicks the Mark Thread Solved link, the prefix [SOLVED] is added to the thread title. But the user added icon is not changed.

How about changing the icon to a default one a check mark is the best icon which I can suggest. Why I say this is rather looking the text, people can easily notify images, colors etc.

And also it won’t be an issue, because after certain time people deal with the forum, they get familiar not to use the check mark icon. Because they know that if he/she used it the possibility to get answered there question is very low.

So, what you think of it.

Eric
04-25-2008, 10:41 PM
I'm thinking of restarting my development of this modification - I'll go over the thread in the next few days about fixes/features/etc. Anyone have any ideas/thoughts toward a new version? Post or PM me.

kafi
04-26-2008, 07:28 PM
Great! :)

FR:
- make it product
- mark post(s) solved the thread
- add reputation to solved post
- make it 3.7 compatible

that would be awsome, thank you for you effort!

nervous
05-01-2008, 11:06 PM
is this ad-on watch the moderator who has controled the new post?

Charlie98902
05-02-2008, 12:23 PM
Has anyone tested this on version 3.7.0 yet? Will this mod be ported into the 3.7 mods as I would like to install this.

Charlie98902
05-05-2008, 10:48 PM
Has anyone tested this on version 3.7.0 yet? Will this mod be ported into the 3.7 mods as I would like to install this.

Bump?

Dashman
05-06-2008, 07:59 AM
I'm also looking for this mod for 3.7.0. Any news would be great :)

jmurrayhead
05-10-2008, 02:13 PM
It would be great if this mod could be modified to make use of the 3.7 thread prefixes instead of appending "[Solved]" to the thread title. I'd reinstall this modification if it had that ability :)

AScherff
05-10-2008, 02:22 PM
Yes,

a Version for V. 3.7 would be nice :)

echo2kk5
05-10-2008, 02:57 PM
Another vote for a 3.7 version! :p

Eric
05-10-2008, 09:35 PM
I'm looking into coding it to work with vB 3.7 and the new features - no ETA.

Jase2
05-10-2008, 09:38 PM
Yay - thanks SecondV. Although I don't use the 'prefix' system - so maybe make that an option in ACP to switch on/off.

shadowevil
05-11-2008, 06:02 AM
Edit Temps SHOWTHREAD dont work, it error:
The following error occurred when attempting to evaluate this template:

The conditional on line 404 appears to be missing its end tag (</if>). The template will not function properly unless this is fixed.


This is likely caused by a malformed conditional statement. It is highly recommended that you fix this error before continuing, but you may continue as-is if you wish.

This template SHOWTHREAD of me: (attach file)

Can you help me ???

Charlie98902
05-11-2008, 03:18 PM
Yay - thanks SecondV. Although I don't use the 'prefix' system - so maybe make that an option in ACP to switch on/off.

I have requested a simple plugin to allow users to use the thread prefixes so if this gets done then you could use that.

Dashman
05-13-2008, 09:08 AM
Does anyone know of another plugin similar to this that will work on 3.7.0? Cant believe there isnt one out yet!!

Charlie98902
05-14-2008, 01:42 AM
Does anyone know of another plugin similar to this that will work on 3.7.0? Cant believe there isnt one out yet!!

There is thread prefixes but the regular user can change it too? Ao there is but yet not the same just yet.

puroeuro
05-20-2008, 11:59 AM
i would really like to use this with the thread prefixes hack as others have stated, it also would be nice to have the image in a column as someone linked here http://www.helpmij.nl/forum/forumdisplay.php?f=115 maybe if this can be done in a new release could it also be clickable so it can be sorted from solved to unsolved? also would it still be able to be useable on 3.6.8 version, i haven't a clue on how to upgrade the board... and i also wouldn't want to loose the hacks that have already been installed. i'll mark installed for updates on this...

Black Tiger
05-20-2008, 12:24 PM
also would it still be able to be useable on 3.6.8 version, i haven't a clue on how to upgrade the board... and i also wouldn't want to loose the hacks that have already been installed. i'll mark installed for updates on this...
You want to "upgrade" to 3.6.8 when 3.6.10 is the latest final version??? And you don't have a clue and you're the admin? It's really easy.
I did not know that the admin of the helpmij forums was also here. If you want, send me a pm then I'll mail you my email adres, I'm dutch too, running several boards on vbulletin.
I think I might be of help and in email we can write in Dutch.:)

mark|3
05-22-2008, 08:53 AM
my vote for 3.7 version. pls :D

echo2kk5
05-23-2008, 04:34 PM
Has anyone tried this in version 3.7? I could really use this on my site.

mark|3
05-26-2008, 04:50 AM
doesn't work well with 3.7 you can't "unsolved" the thread.

Jase2
05-28-2008, 04:36 PM
Any progress SecondV?

RedGTiVR6
05-29-2008, 10:12 PM
darn! we could use this on our forums. Any chance it might be updated for 3.7? I see talk about updating it in the mod post....but nothing came of that I guess?

Milktruck
05-31-2008, 06:45 AM
When we upgraded to 3.7 this plugin stopped working.

:(

Was one of our favorite things.

proxx
06-03-2008, 06:08 PM
please please upgrade this to 3.7

it doesn't work on our board after upgrade to 3.7 and so many people like to use this feature.

proxx
06-06-2008, 06:34 PM
pretty please?!

SVTCobraLTD
06-08-2008, 12:00 PM
3.7 HERE (https://vborg.vbsupport.ru/showthread.php?t=169446).

Regards Jason :)

Looks like there is an update for 3.7.

SVTCobraLTD
06-08-2008, 12:04 PM
A feature that would be nice would be having options to choose from such as solved, sold, found, etc. Admin defined of coarse.

Jase2
06-22-2008, 11:39 AM
I have it working for 3.7...I guess you'll all need to wait for SecondV to update this hack!

Jase2
06-23-2008, 09:50 PM
Hey,

For anyone wanting this to work with 3.7, then just simply uninstall your current product and install the new one that I have attached. Everything else is the same, so just follow the orginal readme. This is working fine for me on 3.7. 1. PL2 :)

If SecondV cannot continue development of this, then I will be gladly take over and port it over to the 3.7 section. :)

-- Jason

queengoc
06-25-2008, 11:53 AM
Jase, is there any way to change the word from solved to answered? We have a Q&A section but they're not really problems to solve. It would help tremendously if I can change the wording.

Thanks!

pedroenf
06-25-2008, 01:09 PM
Hey,

For anyone wanting this to work with 3.7, then just simply uninstall your current product and install the new one that I have attached. Everything else is the same, so just follow the orginal readme. This is working fine for me on 3.7. 1. PL2 :)

If SecondV cannot continue development of this, then I will be gladly take over and port it over to the 3.7 section. :)

-- Jason


Thank you Jase2 for the upgrade. You're the man.:D

Jase2
06-30-2008, 10:13 AM
queengoc, yes that is easily done. Just go to:

ACP --> vBulletin Options --> vBulletin Options --> Solved Threads --> Solved Thread Prefix

...and just change the prefix. :)

pedroenf, you're welcome! :)

RedGTiVR6
06-30-2008, 12:34 PM
what exactly is the difference between this mod for 3.7 and the functionality that's built into 3.7?

queengoc
07-02-2008, 03:48 AM
That's awesome Jase! I thought it would be something in the code I needed to change. Thank you Jase! :D

Jase2
07-02-2008, 11:35 AM
No worries, queengoc! :)

RedGTiVR6, what do you mean? This just simply marks threads solved, based on usergroups permissions. I'm not aware of 3.7 having this functionality built in. ;)

machelp
07-06-2008, 09:49 PM
Thanks Jase2 and secondV

I have a slight style issue.

http://www.mac-help.com/threadsolved.jpg

Any help appreciated.

thanks

Ric

Jase2
07-07-2008, 11:12 PM
Well, you will need to figure that out yourself, or even better, ask the style designer. Seems you haven't got the correct image path. Check the manual template edits.

machelp
07-07-2008, 11:50 PM
Thanks,

all sorted.

regards

Ric

Mitsuomi
07-11-2008, 09:55 AM
I installed, works excelent, but i have a problem, when i open the tools menu, it desapear me all the options to close, open, etc. Like i put in the next image.

http://img518.imageshack.us/img518/9000/markthreadassolvedka7.png

If I mark the thread as solved, the tools apears again like if nothing happend. Look.

http://img521.imageshack.us/img521/8563/markthreadassolved2sr2.png

Marcar como Resuelto = Mark as Solved
Marcar como No Resuelto = Mark as Unsolved

I copy my showthread here, maybe somone of you could helpme.

<!-- thread tools -->
<div class="smallfont">
<if condition="!$show['search_engine']">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/printer.gif" alt="$vbphrase[show_printable_version]" vspace="1" /> <a href="printthread.php?$session[sessionurl]t=$threadid" rel="nofollow">$vbphrase[show_printable_version]</a></div>
<div><img class="inlineimg" src="$stylevar[imgdir_button]/sendtofriend.gif" alt="$vbphrase[email_this_page]" vspace="1" /> <a href="sendmessage.php?$session[sessionurl]do=sendtofriend&amp;t=$threadid" rel="nofollow">$vbphrase[email_this_page]</a></div>
</if>
<if condition="$show['member']">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/subscribe.gif" alt="$vbphrase[subscription]" vspace="1" />
<if condition="$show['subscribed']">
<a href="subscription.php?$session[sessionurl]do=removesubscription&amp;t=$threadid">$vbphrase[unsubscribe_from_this_thread]</a>
<else />
<a href="subscription.php?$session[sessionurl]do=addsubscription&amp;t=$threadid">$vbphrase[subscribe_to_this_thread]</a>
</if>
</div>
</if>
<if condition="$show['addpoll']">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/addpoll.gif" alt="$vbphrase[add_a_poll]" vspace="1" /> <a href="poll.php?$session[sessionurl]do=newpoll&amp;t=$threadinfo[threadid]">$vbphrase[add_a_poll_to_this_thread]</a></div>
</if>
<if condition="$show['solvedthread']">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" vspace="1" /> <a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$threadinfo[threadid]">$vbphrase[solvedthread_marksolved]</a></div>
</if>
<else />
<if condition="$show['solvedthread_unsolve']">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_markunsolved]" vspace="1" /> <a href="solved.php?$session[sessionurl]do=markunsolved&amp;t=$threadinfo[threadid]">$vbphrase[solvedthread_markunsolved]</a></div>
</if>
</if>
<else />
</div>
<!-- / thread tools -->

<!-- thread tools menu -->
<div class="vbmenu_popup" id="threadtools_menu" style="display:none">
<form action="postings.php?t=$threadid&amp;pollid=$pollid" method="post" name="threadadminform">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$vbphrase[thread_tools]<a name="goto_threadtools"></a></td>
</tr>
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/printer.gif" alt="$vbphrase[show_printable_version]" /> <a href="printthread.php?$session[sessionurl]t=$threadid" accesskey="3" rel="nofollow">$vbphrase[show_printable_version]</a></td>
</tr>
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/sendtofriend.gif" alt="$vbphrase[email_this_page]" /> <a href="sendmessage.php?$session[sessionurl]do=sendtofriend&amp;t=$threadid" rel="nofollow">$vbphrase[email_this_page]</a></td>
</tr>
<if condition="$show['member']">
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/subscribe.gif" alt="$vbphrase[subscription]" />
<if condition="$show['subscribed']">
<a href="subscription.php?$session[sessionurl]do=removesubscription&amp;t=$threadid" rel="nofollow">$vbphrase[unsubscribe_from_this_thread]</a>
<else />
<a href="subscription.php?$session[sessionurl]do=addsubscription&amp;t=$threadid" rel="nofollow">$vbphrase[subscribe_to_this_thread]</a>
</if>
</td>
</tr>
</if>
<if condition="$show['addpoll']">
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/addpoll.gif" alt="$vbphrase[add_a_poll]" /> <a href="poll.php?$session[sessionurl]do=newpoll&amp;t=$threadinfo[threadid]">$vbphrase[add_a_poll_to_this_thread]</a></td>
</tr>
</if>
<if condition="$show['solvedthread']">
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" /> <a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$threadinfo[threadid]">$vbphrase[solvedthread_marksolved]</a></td>
</tr>
<else />
<if condition="$show['solvedthread_unsolve']">
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_markunsolved]" /> <a href="solved.php?$session[sessionurl]do=markunsolved&amp;t=$threadinfo[threadid]">$vbphrase[solvedthread_markunsolved]</a></td>
</tr>
</if>


<else />


<if condition="$show['adminoptions']">
<tr>
<td class="thead">$vbphrase[admin_tools]<a name="goto_threadadmin"></a></td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite">
<if condition="$show['openclose']"><div><label for="ao_oct"><input type="radio" name="do" id="ao_oct" value="openclosethread" checked="checked" /><if condition="$show['closethread']">$vbphrase[close_thread]<else />$vbphrase[open_thread]</if></label></div></if>
<if condition="$show['btu_canban']">
<div><label for="ao_btu"><input type="radio" name="do" id="ao_btu" value="btu_clear" />$vbphrase[btu_clear]</label></div>
<div><label for="ao_btua"><input type="radio" name="do" id="ao_btua" value="btu_clear_all" />$vbphrase[btu_clear_all]</label></div>
<div><label for="ao_btuv"><input type="radio" name="do" id="ao_btuv" value="btu_view_all" />$vbphrase[btu_view_all]</label></div>
</if>
<if condition="$show['movethread']"><div><label for="ao_mvt"><input type="radio" name="do" id="ao_mvt" value="movethread" />$vbphrase[move_thread]</label></div>
<div><label for="ao_cpt"><input type="radio" name="do" id="ao_cpt" value="copythread" />$vbphrase[copy_thread]</label></div></if>
<if condition="$show['editthread']"><div><label for="ao_edt"><input type="radio" name="do" id="ao_edt" value="editthread" />$vbphrase[edit_thread]</label></div></if>
<if condition="$show['deletethread']"><div><label for="ao_dlt"><input type="radio" name="do" id="ao_dlt" value="deletethread" />$vbphrase[delete_thread]</label></div></if>
<if condition="$show['managethread']">
<div><label for="ao_sut"><input type="radio" name="do" id="ao_sut" value="stick" /><if condition="$show['unstick']">$vbphrase[unstick_thread]<else />$vbphrase[stick_thread]</if></label></div>
<div><label for="ao_mgt"><input type="radio" name="do" id="ao_mgt" value="mergethread" />$vbphrase[merge_threads]</label></div>
<!--<div><label for="ao_spt"><input type="radio" name="do" id="ao_spt" value="splitthread" />$vbphrase[split_thread]</label></div>-->
<div><label for="ao_rrd"><input type="radio" name="do" id="ao_rrd" value="removeredirect" />$vbphrase[remove_redirects]</label></div>
</if>
<if condition="$show['editpoll']"><div><label for="ao_edp"><input type="radio" name="do" id="ao_edp" value="editpoll" />$vbphrase[edit_poll]</label></div></if>
</td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite" align="center">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="t" value="$threadid" />
<input type="hidden" name="pollid" value="$pollid" />
<input type="submit" class="button" value="$vbphrase[perform_action]" />
</td>
</tr>
</if>
</table>

</form>
</div>
<!-- / thread tools menu -->

Tanks for your time :)

Oh, by the way, I'm using Vb 3.6.9

eroan
07-15-2008, 03:56 PM
How can I do to make this script work in postbit_legacy ?

I included the following code to add a button directly in the first post. The only problem is that the script is loaded in "showthread_complete" so the data doesn't load in this template :

<if condition="!$GLOBALS['FIRSTPOSTID'] and THIS_SCRIPT == 'showthread'">
<if condition="$show['solvedthread']">
<a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$threadinfo[threadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" vspace="1" /></a>
</if>
<if condition="$show['solvedthread_unsolve']">
<a href="solved.php?$session[sessionurl]do=markunsolved&amp;t=$threadinfo[threadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved2.gif" alt="$vbphrase[solvedthread_markunsolved]" vspace="1" /></a>
</if>
</if>

$show['solvedthread'] and $show['solvedthread_unsolve'] are empty.

An idea?

eroan
07-16-2008, 07:34 PM
Nobody knows?

Please help me to make it work in postbit_legacy !

eroan
07-17-2008, 01:45 PM
Please I really need to make it work in postbit_legacy !

Eric
07-18-2008, 11:29 PM
I will not be able to continue working on this modification. I no longer have a vB license, therefore no longer have the vB code, nor am I able to do much at all here.

eroan
07-19-2008, 04:59 AM
So that's it???

Jase2
07-19-2008, 11:37 AM
SecondV, do I have permission to release for 3.7?

-- Jason

intell_iut
07-19-2008, 04:32 PM
please release it for 3.7
can i use this mod on 3.7
please tell us time of releasing , i really need this mod on 3.7

intell_iut
07-22-2008, 09:22 AM
jase help me tp install this hack and it work great
now how can i add this tools to moderation tools, too many topic must mark as solved and it takes too much time to mark
is there any chance to ad this tools to moderation tools and mark many thread as solved in one step

jesus likes pie
07-26-2008, 03:19 AM
uhh...

it's working just fine on 3.7...

jesus likes pie
07-26-2008, 03:26 AM
Ah nevermind, seems usergroup permissions are not being taken into effect.

Jase2
07-27-2008, 02:19 PM
Jesus, that's why you need to use the product I posted here: https://vborg.vbsupport.ru/showpost.php?p=1557241&postcount=190

Eric
07-30-2008, 01:50 AM
SecondV, do I have permission to release for 3.7?

-- Jason
Yes.

RAH104
08-02-2008, 09:57 PM
Great mod - thanks!

Is it possible to allow a usergroup to mark threads as solved even if the user didn't originally create the thread? Also is this possible without it being the moderators usergroup?

MHC
08-30-2008, 06:12 PM
Hey,

For anyone wanting this to work with 3.7, then just simply uninstall your current product and install the new one that I have attached. Everything else is the same, so just follow the orginal readme. This is working fine for me on 3.7. 1. PL2 :)

If SecondV cannot continue development of this, then I will be gladly take over and port it over to the 3.7 section. :)

-- Jason

We are using vB 3.7.2 PL2 as well. Will install shortly. Hopefully it will be pretty straightforward. Thanks for updating this add-on with a working version for 3.7.2!

MHC
08-31-2008, 10:24 PM
Great mod - thanks!

Is it possible to allow a usergroup to mark threads as solved even if the user didn't originally create the thread? Also is this possible without it being the moderators usergroup?

I installed this hack and I agree, it would be cool if there was an option for allowing other members than the thread starter to be able to use it.

Jase2
09-09-2008, 09:13 AM
Yes.

Thanks -- I'll release it soon.

kafi
09-09-2008, 09:25 AM
For the future you plan to include an option to choose who solved the thread, please if possible allow also mark post that is considered as best solution...

Johnny Utah
11-09-2008, 03:24 PM
Any updates with this mod on 3.7.x?

Thanks!

AshMagic
11-21-2008, 10:13 PM
I'm having trouble with number 6.

Edit Post / Thread Permissions > Can Mark Threads as Solved for each usergroup.

Where can I find this option? THANKS!

satam2k
11-21-2008, 11:37 PM
Thank you

Technoviking
11-27-2008, 11:38 PM
When I try to edit Post / Thread Permissions the option for Solved Threads isn't there.

What did I do wrong??

webForum-dev
11-28-2008, 12:46 PM
Is there going to be a release for 3.7 ?

AshMagic
11-29-2008, 01:19 PM
When I try to edit Post / Thread Permissions the option for Solved Threads isn't there.

What did I do wrong??

Ive got exactly the same problem!! Ive been waiting ages for a reply!!!!

If someone knows the answer then please post back :confused:

AshMagic
12-05-2008, 12:06 PM
For anyone else who was stuck like me.. Go here:

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

Technoviking
12-05-2008, 09:48 PM
What in that thread will help me??

HossMon
12-24-2008, 03:03 AM
Is there going to be a release for 3.7 ?


Ummm guys it will work on v 3.7 IF you use the xml file Jason posted here...

https://vborg.vbsupport.ru/showpost.php?p=1557241&postcount=190

I just installed it on a 3.7 test board and all is fine :)

This will also solve this problem

When I try to edit Post / Thread Permissions the option for Solved Threads isn't there.

What did I do wrong??

proxx
01-13-2009, 08:01 PM
Does this work on 3.8?

proxx
01-23-2009, 06:09 PM
no reply?

Coume
01-25-2009, 07:46 PM
I am also interested to find out if this can be installed on 3.8.

Thanks
Ludo

Proffie
02-03-2009, 03:49 PM
This does work with vB 3.8, although marking threads as Unsolved may not work.

It's a shame that it is no longer updated, as the option for a thread started to solve a thread would have been great. :rolleyes:

Shamil.
02-15-2009, 11:58 PM
How do I change the color of the [SOLVED] bit?

Saviour
02-17-2009, 07:37 PM
Installed and working on vB 3.8.1.

CompiledMonkey
02-27-2009, 05:23 PM
It's not working for me on 3.8, using the product file from here: https://vborg.vbsupport.ru/showpost.php?p=1557241&postcount=190

The option of marking a thread as solved isn't showing up for me and the permission doesn't show up in the manager either.

Eric
02-27-2009, 11:26 PM
As a response to some of the posts here - sorry guys, I do not support this modification, and haven't in over a year. I gave permission to Jase2 last July to port this to 3.7+ and continue development. To my knowledge, though, he's not yet released anything.

jmurrayhead
02-27-2009, 11:45 PM
I think he did, but it was sent to the GraveYard because he was accused of not having permission from the original author...unless that's another mod I'm thinking of...

Eric
02-28-2009, 12:14 AM
Hmmn, oh yeah. That was a misunderstanding. Someone actually tried to say that *I* wasn't the original author of the modification :confused:

I think he did, but it was sent to the GraveYard because he was accused of not having permission from the original author...unless that's another mod I'm thinking of...

Eric
03-09-2009, 11:32 AM
March 09, 2009
--------------------------------------
I have now revoked permission for Jase2 to continue the development of this modification. I WILL BE RELEASING A NEW VERSION FOR 3.8.x SOON.

Saviour
03-09-2009, 12:21 PM
As I said before...

I have this installed and working on 3.8.1 PL1.

It seems to be working fine. Why others are having an issue...I have no clue. However, I do look forward to a 3.8.x release.

Eric
03-09-2009, 12:29 PM
The one I'm releasing has been recoded ;) It will use the Thread Prefix system as well.

Saviour
03-09-2009, 01:00 PM
Sweet...

Will the mod include upgrade instructions, as well?

Eric
03-09-2009, 01:06 PM
I'm looking at how current users can upgrade. Once I have that worked out, then I'll write up instructions for it.

mme42
03-10-2009, 03:29 PM
March 09, 2009
--------------------------------------
I have now revoked permission for Jase2 to continue the development of this modification. I WILL BE RELEASING A NEW VERSION FOR 3.8.x SOON.

Wow, this is good news. :) But, I'm kind of torn now, haha. I spent quite a while looking for this mod and would like to install it. But now I'm tempted to wait for the new version for 3.8. Do you have any kind of rough ETA for when it will be ready? Thanks either way :D

Sym0n
03-17-2009, 06:56 AM
Ooh awesome news I need something just like this, especially the auto closure. SecondV any chance of having the 3.8.* version change the Post Icon (definable from ACP) at the same time as changing the prefix and closing? If so that would be every box ticked for me. :D

Having the the choice of which forums to include the solved ability in, instead of exclude, would be a bonus.

I'll mark this as installed now so I know when the 3.8.* version is out.

Thanks :)

Sy

Eric
03-17-2009, 10:26 PM
Sorry for the late reply, there is no ETA atm on the release, but it is coming ;)

Sym0n, with the core Thread Prefix system in vB, it allows you to select which forums this should be used in (in the admincp). So, that means the "excluded" forums with this mod will be removed for the 3.8.x version because I'm making it use the THread Prefix system ;)

The icon idea, I'll see what I can do. :)

Sym0n
03-22-2009, 03:42 PM
Ok cool, well no rush I'm looking forward to it's release though and the post icons would be awesome.

Thanks

Sy

Eric
03-22-2009, 08:28 PM
For the icon idea, I do have one question. Do you mean the "Post Icons", ie, the one I assigned to this post ( https://vborg.vbsupport.ru/external/2010/11/2.gif )?

soundium
03-24-2009, 07:49 PM
Do you wanna try to make the same system as Lithium Kudos System?

Eric
03-24-2009, 09:21 PM
Lithium Kudos System? What's that?

EDIT: thanks wiki

Kudos are a way for a user to give positive feedback on a forum post. Subject to moderator controls, anyone in the community can kudo a message, with the kudos from super-users and moderators often carrying more weight. Kudos counts on forums quickly highlight the most popular content and time-scoped kudos leaderboards elevate that content to the community's front page.

Umm, no. My mod is simply to mark a thread as being resolved.

soundium
03-25-2009, 09:05 PM
Lithium Kudos System? What's that?

EDIT: thanks wiki



Umm, no. My mod is simply to mark a thread as being resolved.

I know, but I wish your mod can do more as only mark solved :up:

Kolbi
03-27-2009, 10:17 AM
How can i change the colour of the [SOLVE] ?