Hi,
I've been pruning my templates, particularly the Edit Option. I've managed to get the 'Hybrid' thread view showing as the default (is there a way to get it to do so for unregistered too?), but I'm having the devil's job trying to get the Standard Editor as default. I've removed the WYSIWYG option as that's not enabled, but I want it to show the standard editor unless a user specifically chooses the Basic. I can get it showing first, but it won't stick, and it certainly doesn't save it. Wretched thing keeps reverting.
This is what I tried:
Original
My revision:
That kept reverting to basic, even when standard was saved in UserCP. So did this variation.
What am I doing wrong?
Thanx!
I've been pruning my templates, particularly the Edit Option. I've managed to get the 'Hybrid' thread view showing as the default (is there a way to get it to do so for unregistered too?), but I'm having the devil's job trying to get the Standard Editor as default. I've removed the WYSIWYG option as that's not enabled, but I want it to show the standard editor unless a user specifically chooses the Basic. I can get it showing first, but it won't stick, and it certainly doesn't save it. Wretched thing keeps reverting.
This is what I tried:
Original
Code:
<tr> <td> <span style="float:$stylevar[right]"> <select name="showvbcode" id="sel_showvbcode"> <option value="0" $selectvbcode[0]>$vbphrase[basic_editor_simple_text_box]</option> <option value="1" $selectvbcode[1] selected>$vbphrase[standard_editor_extra_formatting]</option> </select> </span> <label for="sel_showvbcode">$vbphrase[message_editor_interface]:</label> </td> </tr>
Code:
<option value="0" $selectvbcode[0] selected>$vbphrase[standard_editor_extra_formatting]</option> <option value="1" $selectvbcode[1]>$vbphrase[basic_editor_simple_text_box]</option>
Code:
<option value="0" $selectvbcode[1] selected>$vbphrase[standard_editor_extra_formatting]</option> <option value="1" $selectvbcode[0]>$vbphrase[basic_editor_simple_text_box]</option>
Thanx!
Comment