Eigene BBCodes in nächste Zeile
Forumsregeln
phpBB 3.0 hat das Ende seiner Lebenszeit überschritten
phpBB 3.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 3.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf die neuste phpBB-Version, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
phpBB 3.0 hat das Ende seiner Lebenszeit überschritten
phpBB 3.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 3.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf die neuste phpBB-Version, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Eigene BBCodes in nächste Zeile
Hallo,
ich hab die Forensuche bereits benutzt und habe mehrere Begriffe eingegeben! Beispiele dazu waren BBCodes sortieren und andere...
Nun zu meiner Frage!
Ich möchte, dass die von mir im Adminbereich erstellten BBCodes eine Zeile unter den Standart BBCodes erscheinen! Wie könnte ich dieses verwirklichen?
Gruß
/Edit: standart anklickbar? hab ich nicht gemacht wasn das?
ich hab die Forensuche bereits benutzt und habe mehrere Begriffe eingegeben! Beispiele dazu waren BBCodes sortieren und andere...
Nun zu meiner Frage!
Ich möchte, dass die von mir im Adminbereich erstellten BBCodes eine Zeile unter den Standart BBCodes erscheinen! Wie könnte ich dieses verwirklichen?
Gruß
/Edit: standart anklickbar? hab ich nicht gemacht wasn das?
-
- Mitglied
- Beiträge: 765
- Registriert: 24.10.2007 09:34
ÖFFNE: posting_buttons.html
SUCHE:
ERSETZE MIT:
SUCHE:
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 -->
</div>
ERSETZE MIT:
Code: Alles auswählen
</div>
<div>
<!-- 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 -->
</div>
In der Posting_Buttons.html sieht es bei mir so aus:
/edit
weiterunten dann erst
Code: Alles auswählen
....size=]','[/size]'<!-- BEGIN custom_tags -->, {custom_tags.BBCODE_NAME}<!-- END custom_tags -->);
weiterunten dann erst
Code: Alles auswählen
<!-- BEGIN custom_tags -->
,cb_{custom_tags.BBCODE_ID}: '{custom_tags.A_BBCODE_HELPLINE}'
<!-- END custom_tags -->
-
- Mitglied
- Beiträge: 765
- Registriert: 24.10.2007 09:34
Dann solltest du zumindest schreiben welchen Style du benutzt ...
Hab da aber ne Vermutung
Öffne posting_button.html
Suche
Ersetze mit
Ansonsten das letzte </div> hinter <!-- END custom_tags --> wenn die Fonts bei dir nicht gibt!
Hab da aber ne Vermutung
Öffne posting_button.html
Suche
Code: Alles auswählen
<!-- BEGIN custom_tags -->
<input type="button" class="btnbbcode" name="addbbcode{custom_tags.BBCODE_ID}" value="{custom_tags.BBCODE_TAG}" onclick="bbstyle({custom_tags.BBCODE_ID})"<!-- IF custom_tags.BBCODE_HELPLINE !== '' --> onmouseover="helpline('cb_{custom_tags.BBCODE_ID}')" onmouseout="helpline('tip')"<!-- ENDIF --> />
<!-- END custom_tags -->
<!-- ENDIF -->
<!-- IF S_BBCODE_ALLOWED -->
<span class="genmed nowrap">{L_FONT_SIZE}: <select class="gensmall" name="addbbcode20" onchange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]');this.form.addbbcode20.selectedIndex = 2;" onmouseover="helpline('f')" onmouseout="helpline('tip')">
<option value="50">{L_FONT_TINY}</option>
<option value="85">{L_FONT_SMALL}</option>
<option value="100" selected="selected">{L_FONT_NORMAL}</option>
<option value="150">{L_FONT_LARGE}</option>
<option value="200">{L_FONT_HUGE}</option>
</select></span>
<!-- ENDIF -->
Code: Alles auswählen
<div>
<!-- BEGIN custom_tags -->
<input type="button" class="btnbbcode" name="addbbcode{custom_tags.BBCODE_ID}" value="{custom_tags.BBCODE_TAG}" onclick="bbstyle({custom_tags.BBCODE_ID})"<!-- IF custom_tags.BBCODE_HELPLINE !== '' --> onmouseover="helpline('cb_{custom_tags.BBCODE_ID}')" onmouseout="helpline('tip')"<!-- ENDIF --> />
<!-- END custom_tags -->
<!-- ENDIF -->
<!-- IF S_BBCODE_ALLOWED -->
<span class="genmed nowrap">{L_FONT_SIZE}: <select class="gensmall" name="addbbcode20" onchange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]');this.form.addbbcode20.selectedIndex = 2;" onmouseover="helpline('f')" onmouseout="helpline('tip')">
<option value="50">{L_FONT_TINY}</option>
<option value="85">{L_FONT_SMALL}</option>
<option value="100" selected="selected">{L_FONT_NORMAL}</option>
<option value="150">{L_FONT_LARGE}</option>
<option value="200">{L_FONT_HUGE}</option>
</select></span>
<!-- ENDIF --></div>
-
- Mitglied
- Beiträge: 765
- Registriert: 24.10.2007 09:34
-
- Mitglied
- Beiträge: 765
- Registriert: 24.10.2007 09:34
Isyan hat geschrieben:Posting_Button.html

Wenn du das machst gehts ........ einfach mal ganz nach unten in der posting_button scrollen ....Huchinotte hat geschrieben:ÖFFNE: posting_buttons.html
SUCHE:
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 --> </div>
ERSETZE MIT:
Code: Alles auswählen
</div> <div> <!-- 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 --> </div>