the only way is to display the standard - no toollbar editor to them while editing sig
TRY THIS (not tested):
FIND IN profile.php:
--------------------------------------------
Code:
require_once('./includes/functions_editor.php');
// set message box width to usercp size
$stylevar['messagewidth'] = $stylevar['messagewidth_usercp'];
construct_edit_toolbar(htmlspecialchars_uni($signature), 0, 0, $vboptions['allowsmilies']);
REPLACE WITH:
--------------------------------------------
Code:
// ================================================= \\
// == [ MODIFIED - GTP BEGIN ]
//require_once('./includes/functions_editor.php');
// set message box width to usercp size
$stylevar['messagewidth'] = $stylevar['messagewidth_usercp'];
//construct_edit_toolbar(htmlspecialchars_uni($signature), 0, 0, $vboptions['allowsmilies']);
$newpost['message'] = iif($_POST['message'], $_POST['message'], $bbuserinfo['signature']);
$vbphrase['your_signature'] = 'Your Signature -- No BBcodes allowed';
$vBeditJs = array(
'font_options_array' => '',
'size_options_array' => '',
'istyle_array' => '',
'normalmode' => 'false'
);
eval('$vBeditTemplate[\'clientscript\'] = "' . fetch_template('editor_clientscript') . '";');
eval('$messagearea = "' . fetch_template('editor_toolbar_off') . '";');
// == [ 00-00-2004 - GTP END ]
// ================================================= \\