MyBB Community Forums

Full Version: Thread View Mode: Linear
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
how can u put for other members Thread View Mode: to Linear
Not really sure what you mean by 'put for other members', as this is already a UserCP setting...
(2009-02-17, 03:56 PM)MattR Wrote: [ -> ]Not really sure what you mean by 'put for other members', as this is already a UserCP setting...

i mean can i disable Thread View to Threaded
UPDATE `mybb_users` SET `threadmode` = 'linear'

Then from the usercp_options template, find and remove:

<tr>
<td colspan="2"><span class="smalltext">{$lang->thread_mode}</span></td>
</tr>
<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>
(2009-02-17, 04:14 PM)MattR Wrote: [ -> ]
UPDATE `mybb_users` SET `threadmode` = 'linear'

Then from the usercp_options template, find and remove:

<tr>
<td colspan="2"><span class="smalltext">{$lang->thread_mode}</span></td>
</tr>
<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>

i need only Thread View Mode: to Linear


were to find this code :

PHP Code:
UPDATE mybb_users SET threadmode = 'linear'
You run this in phpMyAdmin:
UPDATE `mybb_users` SET `threadmode` = 'linear';
(2009-02-17, 07:28 PM)Tom Loveric Wrote: [ -> ]You run this in phpMyAdmin:
UPDATE `mybb_users` SET `threadmode` = 'linear';

im sorry but im beginer of this best forum mybb, can u help me with any scren shot were is this optiones phpMyAdmin: ?
It'll be in your host control panel, ask them if you can't find it.
in admin panel ?
No, host control panel, it isn't a MyBB thing.
Pages: 1 2