Re: Botón thanks
Publicado: 23 Ene 2012, 21:58
Si te fijas mas arriba deje un usuario con contraseña para que pudieran entrar, gracias
phpBB España Oficial, Soporte Internacional Oficial del sistema de foros phpBB en Español, extensiones, estilos, traducciones, guías, tutoriales, videos, redes sociales, webmaster.
https://www.phpbb-es.com/foro/
Código: Seleccionar todo
<!-- IF S_DISPLAY_MEMBERLIST --> <a href="{U_MEMBERLIST}"><img src="{T_THEME_PATH}/images/icon_mini_members.gif" width="12" height="13" alt="*" /> {L_MEMBERLIST}</a><!-- ENDIF -->
Código: Seleccionar todo
<!-- IF S_DISPLAY_TOPLIST --> <a href="{U_REPUT_TOPLIST}"><img src="{T_THEME_PATH}/images/icon_mini_toplist.gif" width="15" height="14" alt="*" />{L_REPUT_TOPLIST}</a><!-- ENDIF -->
<!-- IF S_DISPLAY_THANKSLIST --> <a href="{U_THANKSLIST}"><img src="{T_THEME_PATH}/images/icon_mini_thanks.gif" width="12" height="13" alt="*" /> {L_GRATITUDES}</a><!-- ENDIF -->
Esto que señalas es para ver la lista de Gracias, no el botón, ésto es aparte. Pienso que más viene el asunto en los permisos..Meigabea escribió:Si he probado y limpiado los navegadores...aparte ni yo ni los otros administradores lo ven... he vuelto a mirar las plantillas y creo que el fallo esta overall_header.html
cuanto busco esto no aparece al no ser subsilver2 aunque este basado en el no lo tiene...lo siento me di cuenta ahora...y ya no se cuantas veces he revisado las plantillas
y esto lo tengo que poner despuesCódigo: Seleccionar todo
<!-- IF S_DISPLAY_MEMBERLIST --> <a href="{U_MEMBERLIST}"><img src="{T_THEME_PATH}/images/icon_mini_members.gif" width="12" height="13" alt="*" /> {L_MEMBERLIST}</a><!-- ENDIF -->
Código: Seleccionar todo
<!-- IF S_DISPLAY_TOPLIST --> <a href="{U_REPUT_TOPLIST}"><img src="{T_THEME_PATH}/images/icon_mini_toplist.gif" width="15" height="14" alt="*" />{L_REPUT_TOPLIST}</a><!-- ENDIF --> <!-- IF S_DISPLAY_THANKSLIST --> <a href="{U_THANKSLIST}"><img src="{T_THEME_PATH}/images/icon_mini_thanks.gif" width="12" height="13" alt="*" /> {L_GRATITUDES}</a><!-- ENDIF -->
¿y ese cambio lo hiciste o no lo llegaste a hacer por no encontrar las líneas que te pide?Meigabea escribió:Si he probado y limpiado los navegadores...aparte ni yo ni los otros administradores lo ven... he vuelto a mirar las plantillas y creo que el fallo esta overall_header.html
cuanto busco esto no aparece al no ser subsilver2 aunque este basado en el no lo tiene...lo siento me di cuenta ahora...y ya no se cuantas veces he revisado las plantillas
y esto lo tengo que poner despuesCódigo: Seleccionar todo
<!-- IF S_DISPLAY_MEMBERLIST --> <a href="{U_MEMBERLIST}"><img src="{T_THEME_PATH}/images/icon_mini_members.gif" width="12" height="13" alt="*" /> {L_MEMBERLIST}</a><!-- ENDIF -->
Código: Seleccionar todo
<!-- IF S_DISPLAY_TOPLIST --> <a href="{U_REPUT_TOPLIST}"><img src="{T_THEME_PATH}/images/icon_mini_toplist.gif" width="15" height="14" alt="*" />{L_REPUT_TOPLIST}</a><!-- ENDIF --> <!-- IF S_DISPLAY_THANKSLIST --> <a href="{U_THANKSLIST}"><img src="{T_THEME_PATH}/images/icon_mini_thanks.gif" width="12" height="13" alt="*" /> {L_GRATITUDES}</a><!-- ENDIF -->
Código: Seleccionar todo
<script type="text/javascript">
Código: Seleccionar todo
<script type="text/JavaScript">
function getElement(iElementId)
{
if (document.all)
{
return document.all[iElementId];
}
if (document.getElementById)
{
return document.getElementById(iElementId);
}
}
function toggleElement(oElement)
{
if (oElement.style.display == "none")
{
oElement.style.display = "";
}
else
{
oElement.style.display = "none";
}
}
</script>