2012-08-06, 01:16 PM
2012-08-06, 01:31 PM
To disable it by default goto ACP --> Configuration --> Settings --> Show Thread Options --> Disable 'Usenet Style Thread View'.
You can remove the option from UserCP's by going to ACP --> Templates & Style --> Templates --> Your Theme Templates --> User Control Panel Templates --> usercp_options and remove:
To disable it for all users on your forum you can also run this SQL query:
Hope this helps
You can remove the option from UserCP's by going to ACP --> Templates & Style --> Templates --> Your Theme Templates --> User Control Panel Templates --> usercp_options and remove:
<tr>
<td colspan="2"><select name="threadmode"><option value="">{$lang->use_default}</option><option value="linear" {$threadview['linear']}>{$lang->linear}</option><option value="threaded" {$threadview['threaded']}>{$lang->threaded}</option></select></td>
</tr>
To disable it for all users on your forum you can also run this SQL query:
UPDATE `mybb_users` SET `threadmode` = 'linear' WHERE `threadmode` = 'threaded'
Hope this helps
2012-08-06, 01:32 PM
2012-08-06, 01:33 PM
Ah I missed a few bits
Didn't realise you had a tutorial ^_^.
Didn't realise you had a tutorial ^_^.