Cuando pedimos datos de Soporte, un dato importante son los MODs instalados. En ningún lugar mencionaste que habías instalado los bbcodes con imagenes.
Al instalar este MOD (de mi autoría), lo hiciste mal... tienes estas líneas, que editaste de forma incorrecta (en
posting_butons.html):
Código: Seleccionar todo
// Helpline messages
var help_line = {
b: '{LA_BBCODE_B_HELP}',
i: '{LA_BBCODE_I_HELP}',
u: '{LA_BBCODE_U_HELP}',
q: '{LA_BBCODE_Q_HELP}',
c: '{LA_BBCODE_C_HELP}',
l: '{LA_BBCODE_L_HELP}',
o: '{LA_BBCODE_O_HELP}',
p: '{LA_BBCODE_P_HELP}',
w: '{LA_BBCODE_W_HELP}',
s: '{LA_BBCODE_S_HELP}',
f: '{LA_BBCODE_F_HELP}',
e: '{LA_BBCODE_E_HELP}',
d: '{LA_BBCODE_D_HELP}',
t: '{LA_BBCODE_T_HELP}',
tip: '{L_STYLES_TIP}'
// Botones en imagenes por mitch
font: 'Tipo de fuente: [font=Arial]Texto[/font]',
align_left: 'Alinear a la Izquierda: [align=left]Texto[/align]',
align_center: 'Centrar: [align=center]Texto[/align]',
align_right: 'Alinear a la Derecha: [align=right]Texto[/align]',
align_justify: 'Justificar: [align=justify]Texto[/align]',
sup: 'Superíndice: [sup]Texto[/sup]',
sub: 'Subíndice: [sub]Texto[/sub]',
strike: 'Texto Tachado: [strike]Texto[/strike]',
highlight: 'Toque de luz (highlight): [highlight=#COLOR]Texto[/highlight]',
hr: 'Línea Horizontal: [hr][/hr]',
ot: 'Offtopic: [ot]Texto[/ot]',
marquee_down: 'Desplazar texto hacia abajo: [marquee=down]Texto[/marquee]',
marquee_up: 'Desplazar texto hacia arriba: [marquee=up]Texto[/marquee]',
marquee_left: 'Desplazar texto hacia la izquierda: [marquee=left]Texto[/marquee]',
marquee_right: 'Desplazar texto hacia la derecha: [marquee=right]Texto[/marquee]',
spoiler: 'Spoiler: [spoiler]Texto[/spoiler]',
mail: 'Correo: [mail]Correo[/mail]',
video: 'Video (avi/wmv/mpg): [video width=ancho height=alto]URL del archivo[/video]',
mp3: 'Archivo de audio (mp3): [mp3]URL del archivo[/mp3]',
quick: 'Video Quicktime: [quick width=ancho height=alto]URL del archivo[/quick]',
ram: 'Archivo Real Media: [ram width=ancho height=alto]URL del archivo[/ram]',
googlevideo: 'Video google: [googlevideo]ID del video[/googlevideo]',
youtube: 'Video youtube: [youtube]ID del video[/youtube]',
// fin botones en imagenes por mitch
<!-- BEGIN custom_tags -->
,cb_{custom_tags.BBCODE_ID}: '{custom_tags.A_BBCODE_HELPLINE}'
<!-- END custom_tags -->
}
Busca estas líneas (hazlo bien), y reemplazalas por esta (que pienso deberían funcionarte... no lo se, no las he probado):
Código: Seleccionar todo
// Helpline messages
var help_line = {
b: '{LA_BBCODE_B_HELP}',
i: '{LA_BBCODE_I_HELP}',
u: '{LA_BBCODE_U_HELP}',
q: '{LA_BBCODE_Q_HELP}',
c: '{LA_BBCODE_C_HELP}',
l: '{LA_BBCODE_L_HELP}',
o: '{LA_BBCODE_O_HELP}',
p: '{LA_BBCODE_P_HELP}',
w: '{LA_BBCODE_W_HELP}',
s: '{LA_BBCODE_S_HELP}',
f: '{LA_BBCODE_F_HELP}',
e: '{LA_BBCODE_E_HELP}',
d: '{LA_BBCODE_D_HELP}',
t: '{LA_BBCODE_T_HELP}',
tip: '{L_STYLES_TIP}',
// Botones en imagenes por mitch
font: 'Tipo de fuente: [font=Arial]Texto[/font]',
align_left: 'Alinear a la Izquierda: [align=left]Texto[/align]',
align_center: 'Centrar: [align=center]Texto[/align]',
align_right: 'Alinear a la Derecha: [align=right]Texto[/align]',
align_justify: 'Justificar: [align=justify]Texto[/align]',
sup: 'Superíndice: [sup]Texto[/sup]',
sub: 'Subíndice: [sub]Texto[/sub]',
strike: 'Texto Tachado: [strike]Texto[/strike]',
highlight: 'Toque de luz (highlight): [highlight=#COLOR]Texto[/highlight]',
hr: 'Línea Horizontal: [hr][/hr]',
ot: 'Offtopic: [ot]Texto[/ot]',
marquee_down: 'Desplazar texto hacia abajo: [marquee=down]Texto[/marquee]',
marquee_up: 'Desplazar texto hacia arriba: [marquee=up]Texto[/marquee]',
marquee_left: 'Desplazar texto hacia la izquierda: [marquee=left]Texto[/marquee]',
marquee_right: 'Desplazar texto hacia la derecha: [marquee=right]Texto[/marquee]',
spoiler: 'Spoiler: [spoiler]Texto[/spoiler]',
mail: 'Correo: [mail]Correo[/mail]',
video: 'Video (avi/wmv/mpg): [video width=ancho height=alto]URL del archivo[/video]',
mp3: 'Archivo de audio (mp3): [mp3]URL del archivo[/mp3]',
quick: 'Video Quicktime: [quick width=ancho height=alto]URL del archivo[/quick]',
ram: 'Archivo Real Media: [ram width=ancho height=alto]URL del archivo[/ram]',
googlevideo: 'Video google: [googlevideo]ID del video[/googlevideo]',
youtube: 'Video youtube: [youtube]ID del video[/youtube]',
// fin botones en imagenes por mitch
<!-- BEGIN custom_tags -->
cb_{custom_tags.BBCODE_ID}: '{custom_tags.A_BBCODE_HELPLINE}',
<!-- END custom_tags -->
}
Limpiar caché, e intentarlo nuevamente... deberían solucionarse varios de los errores.