Quote:
Originally Posted by superthang
is there a way make the member start the thread to put their own password?
I am doing a school forum, and i want the student to create their own study group thread and password protect it so only their group can go in.
|
I don't think it is possible with this hack. You might have to do it via usergroups and forum permissions and subforums or something like that.
Quote:
Originally Posted by flasher33
will this work on 3.7.x
|
I had to change the template edit in order to make it work.
But with my edit, only admins can set/change the password.
Find:
Code:
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/printer.gif"
Before, add:
Code:
<if condition="$show['admincplink']">
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/thread_lock.gif" alt="$vbphrase[threadpassword_setup_title]" /> <a href="threadpassword.php?$session[sessionurl]do=modify&t=$threadid" rel="nofollow">$vbphrase[threadpassword_setup_title]</a></td>
</tr>
</if>