[openfile]Abrir: [c]styles/tuestilo/template/posting_buttons.html[/c]
si tienes varios estilos, haz esto a todos tus estilos, o si tienes estilos que usan template inheritance, pues nada mas lo haces a prosilver of subsilver2.[/openfile]
[findcode]Buscar Esto puede ser un encuentro parcial y no toda la línea
Code: Select all
<!-- 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 -->
Code: Select all
<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">{L_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>
[openfile]Abrir: [c]language/en_mx/common.php[/c] o language/es/common.php dependiendo tu idioma[/openfile]
[findcode]Buscar Esto puede ser un encuentro parcial y no toda la línea
Code: Select all
'CURRENT_TIME' => 'Fecha actual %s',
Code: Select all
'CUSTOM_BBCODES' => 'CUSTOM BBCODES',
[information]si non quieres hacer le la edición a tu archivo de idioma, busca [c]{L_CUSTOM_BBCODES}[/c] y reemplaza lo por lo que quieras que diga la caja. Yo uso esto en los archivos de los idiomas por es como el equipo de phpbb.com sugiere lo hagas.[/information]