MyBB Community Forums

Full Version: Set All Member To Use Linear
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to make all members to set on their used in usercp
"Thread View Mode: Linear"
How to do it?
I mean all members have to use Linear Mode. How to set in admincp?
And i want to remove threated Mode. How to remove it?
To set it for current users, run this query:

UPDATE `mybb_users` SET `threadmode` = 'linear';

To remove it, remove this from the showthread template:

<div style="float: right;">
					<span class="smalltext"><strong><a href="showthread.php?mode=threaded&amp;tid={$tid}&amp;pid={$pid}#pid{$pid}">{$lang->threaded}</a> | <a href="showthread.php?mode=linear&amp;tid={$tid}&amp;pid={$pid}#pid{$pid}">{$lang->linear}</a></strong></span>
				</div>
I should run this code
UPDATE `mybb_users` SET `threadmode` = 'linear'; 

in phpmyadmin right?
(2011-04-05, 04:37 AM)byzantium Wrote: [ -> ]I should run this code
UPDATE `mybb_users` SET `threadmode` = 'linear'; 

in phpmyadmin right?
yeah,correct.

thank you, it's solving my problem