Locking theads in phpbb3 but keeping them visible in the thread list -
Is there any way that I can lock the thread, or make it private in PPBB3 for a particular usergroup so that Users can still view threads / forums in the list, but know that they are prohibited from reaching them until they 'upgrade' at a higher user level.
I know that you can thread 'hidden' from a user group, but I still should know that to help build value in the forum, what is the thread as a Guest And encourage the guest to consider upgrading.
Thank you for your help
A request for a standard phpBB3 installation It is unlikely, though it is possible to change some lines of code.
Open viewforum.php
and change the following lines:
if ($ auth-> acl_get ('f_read', $ ($ Auth-> acl_gets ('f_list', 'f_read', $ forum_id))
from
>
and
(! $ Auth-> acl_get ('f_read', $ forum_id))
to
if the following lines are changed (! $ Auth- & gt; acl_gets ('f_list', 'f_read', $ forum_id))
All people with permission to view will be able to see the topic in the forum, but do not read them.
Comments
Post a Comment