Erstens hast Du den Gallery-Mod integriert und der bbCode hat eine falsche zugewiesene Nummer, dadurch werden die anderen nicht mehr gefunden.
Dadurch reicht es nicht, wenn Du die Codes von der install nimmst da der album-bbcode nicht integriert ist also hast Du bei den bbcodes +2 Nummern
und mußt ihn in die language und template mit integrieren.
Open: includes/functions_display.php
find
Code: Alles auswählen
// Start counting from 22 for the bbcode ids (every bbcode takes two ids - opening/closing)
// note for bbcodebox3: new start counting from 110 for the bbcode ids (every bbcode takes two ids - opening/closing)
// also note: for every own extra custom bbcode, you must add +2 to 110
// Bitte beachten: Für jeden eigenen extra Custom BBCode, musst du +2 zu 110 hinzufügen
$num_predefined_bbcodes = 110;
Replace With
Code: Alles auswählen
// Start counting from 22 for the bbcode ids (every bbcode takes two ids - opening/closing)
// note for bbcodebox3: new start counting from 112 for the bbcode ids (every bbcode takes two ids - opening/closing)
// also note: for every own extra custom bbcode, you must add +2 to 112
// Bitte beachten: Für jeden eigenen extra Custom BBCode, musst du +2 zu 112 hinzufügen
$num_predefined_bbcodes = 112;
Open: styles/prosilver/template/posting_buttons.html
find
Code: Alles auswählen
//108
,'[outdent]','[/outdent]'
//110 Begin Custom: ,'[bbcode]','[/bbcode]'
<!-- BEGIN custom_tags -->, {custom_tags.BBCODE_NAME}<!-- END custom_tags -->);
Replace With
Code: Alles auswählen
//108
,'[outdent]','[/outdent]'
//110
,'[album]','[/album]'
//112 Begin Custom: ,'[bbcode]','[/bbcode]'
<!-- BEGIN custom_tags -->, {custom_tags.BBCODE_NAME}<!-- END custom_tags -->);
find
add after
find
Code: Alles auswählen
<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/xfire.gif" alt="{L_BBCODE_IMGALT_XFIRE}" id="xfire" onclick="bbstyle(90)"
onmouseover="helpline('xfire')" onmouseout="helpline('tip')" /></a></div>
add after
Code: Alles auswählen
<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/album.gif" alt="{L_BBCODE_IMGALT_ALBUM" id="album" onclick="bbstyle(110)"
onmouseover="helpline('album')" onmouseout="helpline('tip')" /></a></div>