Página 1 de 1

Problema con el MOD Top Posters on Index

Publicado: 21 Dic 2011, 22:12
por franjavi-35
Hola chicos,

Instalé el mod Top Posters on Index (http://www.phpbb-es.com/foro/descarga-m ... x%201.0.0a) y no sé cómo hacer para que aparezca el top posteadores dentro de mi pestaña "¿Quié nos ha visitado?" de mi index mod tabbed, debajo de la lista de usuarios:

Imagen

Espero me puedan ayudar.

Muchas gracias.

Re: Problema con el MOD Top Posters on Index

Publicado: 22 Dic 2011, 14:05
por Megabyte
sólo deberías de colocar ésto debajo del codigo de ¿Quien nos visito hoy? (creo q es otro mod que has instalado, aparte del index tabbed) esto:

y como ya sabes, eso lo haces dentro del index_tabbed.html

Código: Seleccionar todo

<!-- IF TOP_POSTERS_LIST -->
	<h3>{L_TOP_POSTERS}</h3>
	<p>{TOP_POSTERS_LIST}<br />
<!-- IF TOP_POSTERS_HOURS_LIST -->
	<i>{TOP_POSTERS_HOURS}</i> 	
	{TOP_POSTERS_HOURS_LIST}
<!-- ENDIF -->
</p>
<!-- ENDIF -->

Re: Problema con el MOD Top Posters on Index

Publicado: 22 Dic 2011, 14:42
por franjavi-35
Megabyte, sobre el archivo index_tabbed me dijeron que hiciese lo siguiente:

En el index_tabbed.html buscas:

Código: Seleccionar todo

	<!-- ELSEIF U_ACP -->
		<h3>{L_WHO_WAS_HERE}</h3>
		<p>{L_WWH_UPDATE_NEED}</p>
Añades despues:

Código: Seleccionar todo

			<!-- IF TOP_POSTERS_LIST -->
			<h3>{L_TOP_POSTERS}</h3>
			<p>{TOP_POSTERS_LIST}<!-- IF TOP_POSTERS_HOURS_LIST --><br /><em>{TOP_POSTERS_HOURS}</em> {TOP_POSTERS_HOURS_LIST}<!-- ENDIF --></p>
			<!-- ENDIF -->
Tras todos los cambios Actualizar la plan[/i]

Deshago este cambio y añado lo que tu me has dicho?

saludos

Re: Problema con el MOD Top Posters on Index

Publicado: 22 Dic 2011, 14:48
por Megabyte
Es lo mismo... :)


Edito:
solo que agregalo (el codigo del mod top posteadores)despues del siguiente ENDIF

Porque sino, no lo verás...

Re: Problema con el MOD Top Posters on Index

Publicado: 22 Dic 2011, 14:54
por franjavi-35
Es decir, para que quede así?

Código: Seleccionar todo

	<!-- IF WHO_WAS_HERE_TOTAL -->
	<div id="whowashere-panel" style="display: none;">
		<h3>{L_WHO_WAS_HERE}</h3>
		<p>{WHO_WAS_HERE_TOTAL} ({WHO_WAS_HERE_EXP})<br />{WHO_WAS_HERE_RECORD}<br />{WHO_WAS_HERE_LIST}</p>
	</div>
	<!-- ELSEIF U_ACP -->
	<div id="whowashere-panel" style="display: none;">
		<h3>{L_WHO_WAS_HERE}</h3>
		<p>{L_WWH_UPDATE_NEED}</p>

	</div>
	<!-- ENDIF -->
	<!-- IF TOP_POSTERS_LIST --> <h3>{L_TOP_POSTERS}</h3> <p>{TOP_POSTERS_LIST}<!-- IF TOP_POSTERS_HOURS_LIST --><br /><em>{TOP_POSTERS_HOURS}</em> {TOP_POSTERS_HOURS_LIST}<!-- ENDIF --></p> <!-- ENDIF -->

Re: Problema con el MOD Top Posters on Index

Publicado: 22 Dic 2011, 15:03
por javiexin
franjavi-35 escribió:Es decir, para que quede así?
No, déjalo así:

Código: Seleccionar todo

 <!-- IF WHO_WAS_HERE_TOTAL -->
<div id="whowashere-panel" style="display: none;">
<h3>{L_WHO_WAS_HERE}</h3>
<p>{WHO_WAS_HERE_TOTAL} ({WHO_WAS_HERE_EXP})<br />{WHO_WAS_HERE_RECORD}<br />{WHO_WAS_HERE_LIST}</p>
<!-- IF TOP_POSTERS_LIST --> <h3>{L_TOP_POSTERS}</h3> <p>{TOP_POSTERS_LIST}<!-- IF TOP_POSTERS_HOURS_LIST --><br /><em>{TOP_POSTERS_HOURS}</em> {TOP_POSTERS_HOURS_LIST}<!-- ENDIF --></p> <!-- ENDIF -->
</div>
<!-- ELSEIF U_ACP -->
<div id="whowashere-panel" style="display: none;">
<h3>{L_WHO_WAS_HERE}</h3>
<p>{L_WWH_UPDATE_NEED}</p>
</div>
<!-- ENDIF -->
Es posible que tengas que cambiar algo para que se vea mejor (tienes dos títulos en la misma pestaña, quizá te haga falta separarlos, o cambiar uno de ellos para que sea más pequeño).

Saludos,
-javiexin

Re: Problema con el MOD Top Posters on Index  Tema Solucionado

Publicado: 22 Dic 2011, 16:09
por Megabyte
javiexin escribió:
franjavi-35 escribió:Es decir, para que quede así?
No, déjalo así:

Código: Seleccionar todo

 <!-- IF WHO_WAS_HERE_TOTAL -->
<div id="whowashere-panel" style="display: none;">
<h3>{L_WHO_WAS_HERE}</h3>
<p>{WHO_WAS_HERE_TOTAL} ({WHO_WAS_HERE_EXP})<br />{WHO_WAS_HERE_RECORD}<br />{WHO_WAS_HERE_LIST}</p>
<!-- IF TOP_POSTERS_LIST --> <h3>{L_TOP_POSTERS}</h3> <p>{TOP_POSTERS_LIST}<!-- IF TOP_POSTERS_HOURS_LIST --><br /><em>{TOP_POSTERS_HOURS}</em> {TOP_POSTERS_HOURS_LIST}<!-- ENDIF --></p> <!-- ENDIF -->
</div>
<!-- ELSEIF U_ACP -->
<div id="whowashere-panel" style="display: none;">
<h3>{L_WHO_WAS_HERE}</h3>
<p>{L_WWH_UPDATE_NEED}</p>
</div>
<!-- ENDIF -->
Es posible que tengas que cambiar algo para que se vea mejor (tienes dos títulos en la misma pestaña, quizá te haga falta separarlos, o cambiar uno de ellos para que sea más pequeño).

Saludos,
-javiexin
Asi es.... :D, xq si lo dejas fuera del div, se descuadrará..
si el titulo no se ve bien, quiza probar con h1, h2 o algun otro personalizado..

Re: Problema con el MOD Top Posters on Index

Publicado: 23 Dic 2011, 13:56
por franjavi-35
Mil gracias Megabyte. Ya está bien :)