OOOPPPS , auf einmal gehts !!!! Mal schauen obs was taugt ....
Edit :
Farge 1 : Weiß jemand in welcher Datei ich das Ganze manuell "eindeutschen" kann ?
Frage 2 : Wo sind meine eigenen BBCodes ?
Ich hatte ein Dropdownmenü eingebaut , wo alle eigenen BBCodes aufgeführt sind :
Öffne
styles/{YOURTHEME}/template/posting_buttons.html
Finde :
Code: Alles auswählen
<!-- BEGIN custom_tags -->
<input type="button" class="button2" name="addbbcode{custom_tags.BBCODE_ID}" value="{custom_tags.BBCODE_TAG}" onclick="bbstyle({custom_tags.BBCODE_ID})" title="{custom_tags.BBCODE_HELPLINE}" />
<!-- END custom_tags -->
Ersetze mit :
Code: Alles auswählen
<select name="addbbcode_custom" onchange="bbstyle(this.form.addbbcode_custom.options[this.form.addbbcode_custom.selectedIndex].value*1);this.form.addbbcode_custom.selectedIndex = 0;">
<option value="#" selected="selected">Custom BBCodes</option>
<!-- BEGIN custom_tags -->
<option value="{custom_tags.BBCODE_ID}" title="{custom_tags.BBCODE_HELPLINE}">{custom_tags.BBCODE_TAG}</option>
<!-- END custom_tags -->
</select>
Kann ich das hier irgendwie wieder einbauen ?