Quote:
Originally posted by Boofo
Is there any way to have it check for their browser and if it isn't IE 5.5 or 6.0, not even show the option to turn it on or off?
|
Here we go:
Add a new template called wysiwyg_modifyoption:
Sorry but you have to translate back in english
PHP Code:
<tr>
<td bgcolor="#1D6AA0" colspan="2"><normalfont color="#EEEEFF"><b>WYSIWYG Modul</b></normalfont></td>
</tr>
<tr>
<td bgcolor="#1C5780"><normalfont><b>M?chtest Du dasWYSIWYG Modul benutzen?</b></normalfont><br>
<smallfont>Wenn Du ja w?hlst, kannst du den Text beim schreiben/?ndern eines Beitrages nach deinen W?nschen formatieren, ?hnlich wie in MS Word. (WYSIWYG = What You See Is What You Get) <br><b><u>Achtung:</u> Funktioniert nicht mit allen Internet browser. IE 6+ empfohlen!</b>
</smallfont></td>
<td bgcolor="#1C5780"><normalfont>
<input type="radio" name="enablewysiwyg" value="yes" $enablewysiwygchecked> ja
<input type="radio" name="enablewysiwyg" value="no" $enablewysiwygnotchecked> nein
</normalfont></td>
</tr>
in template modifyoptions
find:
PHP Code:
<tr>
<td bgcolor="#1D6AA0" colspan="2"><normalfont color="#EEEEFF"><b>WYSIWYG Modul</b></normalfont></td>
</tr>
<tr>
<td bgcolor="#1C5780"><normalfont><b>M?chtest Du dasWYSIWYG Modul benutzen?</b></normalfont><br>
<smallfont>Wenn Du ja w?hlst, kannst du den Text beim schreiben/?ndern eines Beitrages nach deinen W?nschen formatieren, ?hnlich wie in MS Word. (WYSIWYG = What You See Is What You Get) <br><b><u>Achtung:</u> Funktioniert nicht mit allen Internet browser. IE 6+ empfohlen!</b>
</smallfont></td>
<td bgcolor="#1C5780"><normalfont>
<input type="radio" name="enablewysiwyg" value="yes" $enablewysiwygchecked> ja
<input type="radio" name="enablewysiwyg" value="no" $enablewysiwygnotchecked> nein
</normalfont></td>
</tr>
and replace with
PHP Code:
$wysiwyg_option
in member.php
find:
PHP Code:
if ($bbuserinfo[userid]==0 or $permissions['canmodifyprofile']==0) {
show_nopermission();
}
after that add:
PHP Code:
if ($enableHTMLEdit == 1) {
if ($bbuserinfo[enablewysiwyg]) {
$enablewysiwygchecked="checked";
$enablewysiwygnotchecked="";
} else {
$enablewysiwygchecked="";
$enablewysiwygnotchecked="checked";
}
eval ("\$wysiwyg_option .= \"".gettemplate("wysiwyg_modifyoption")."\";");
} else {
$wysiwyg_option="";
}
Thats all.
It works for me, i just tested with Navigator 6.0 and nothing was shown!