Afiliados en el pie de todas las paginas.
Este tutorial se me ocurrió
copearlo de
WbDev. Les dejo el tutorial explicado.
Este sera el resultado:
[attachment=912]
Vamos a editar esta plantilla:
ACP -> Plantillas y Temas -> Plantillas -> TU TEMA Plantillas -> Pie Plantillas -> footer
Agregamos al principio antes de todo:
Código:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="2">
<strong>Amigos</strong>
</td>
</tr>
<tr>
<td class="trow2" style="padding:5px 50px;" width="10%">
<a href="URL_DE_TU_WEB" title="TITULO_DE_TU_WEB" rel="follow"><img src="BOTON_DE_TU_WEB" alt="" title="TITULO_DE_TU_WEB"></a>
</td>
<td class="trow2" width="90%">
<marquee height="100%" width="100%" behavior="scroll" direction="left" scrollamount="3" scrolldelay="30" loop="true" onmouseover="this.stop()" onmouseout="this.start()">
<a href="LINK_AFILIADO_1" title="TITULO_AFILIADO_1" rel="follow" target="_blank"><img src="IMAGEN_AFILIADO_1" alt="" title="TITULO_AFILIADO_1"/></a>
<a href="LINK_AFILIADO_2" title="TITULO_AFILIADO_2" rel="follow" target="_blank"><img src="IMAGEN_AFILIADO_2" alt="" title="TITULO_AFILIADO_2"/></a>
</marquee>
</td>
</tr>
<tr>
<td class="tfoot" colspan="2">
</td>
</tr>
</table>
<br />
Esta es la linea para colocar nuevos afiliados:
Código:
<a href="LINK_AFILIADO_2" title="TITULO_AFILIADO_2"><img src="IMAGEN_AFILIADO_2" alt="" title="TITULO_AFILIADO_2"></a>
Live Preview:
InuxForos
Afiliados dentro de las estadisticas(solo indice)
Asi es como queda:
[attachment=913]
Vamos a esta plantilla:
ACP -> Plantillas y Temas -> Plantillas -> TU TEMA Plantillas -> Indice Plantillas -> index_stats
Al final de todo agregamos este codigo:
Código:
<tr><td class="tcat"><span class="smalltext"><strong>Legenda</strong></span></td></tr>
<tr>
<td class="trow1"><span class="smalltext">
<table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%">
<tr>
<td class="trow2" style="padding:5px 50px;border-right:1px solid;" width="10%">
<a href="URL_DE_TU_WEB" title="TITULO_DE_TU_WEB" rel="follow"><img src="BOTON_DE_TU_WEB" alt="" title="TITULO_DE_TU_WEB"></a>
</td>
<td class="trow2" width="90%">
<marquee height="100%" width="100%" behavior="scroll" direction="left" scrollamount="3" scrolldelay="30" loop="true" onmouseover="this.stop()" onmouseout="this.start()">
<a href="LINK_AFILIADO_1" title="TITULO_AFILIADO_1" rel="follow" target="_blank"><img src="IMAGEN_AFILIADO_1" alt="" title="TITULO_AFILIADO_1"/></a>
<a href="LINK_AFILIADO_2" title="TITULO_AFILIADO_2" rel="follow" target="_blank"><img src="IMAGEN_AFILIADO_2" alt="" title="TITULO_AFILIADO_2"/></a>
</marquee>
</td>
</tr>
</table>
</td>
</tr>
Esta es la linea para colocar nuevos afiliados:
Código:
<a href="LINK_AFILIADO_2" title="TITULO_AFILIADO_2" rel="follow"><img src="IMAGEN_AFILIADO_2" alt="" title="TITULO_AFILIADO_2"></a>
Insertar Afiliados en el portal:
Este sera el resultado:
Vamos a editar esta plantilla:
ACP -> Plantillas y Temas -> Plantillas -> TU TEMA Plantillas -> Portal Plantillas -> portal
Buscamos:
{$latestthreads} o
{$whosonline}
Colocan este código después de eso:
Código:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>Afiliados</strong></td>
</tr>
<tr>
<td class="trow1" align="center">
<table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%">
<tr>
<td class="trow2" style="padding:5px 50px;border-bottom:1px solid;" width="10%">
<a href="URL_DE_TU_WEB" title="TITULO_DE_TU_WEB"><img src="BOTON_DE_TU_WEB" alt="" title="TITULO_DE_TU_WEB"></a>
</td>
<td class="trow2" width="90%">
<marquee height="100%" width="100%" behavior="scroll" direction="left" scrollamount="3" scrolldelay="30" loop="true" onmouseover="this.stop()" onmouseout="this.start()">
<a href="LINK_AFILIADO_1" title="TITULO_AFILIADO_1" rel="follow" target="_blank"><img src="IMAGEN_AFILIADO_1" alt="" title="TITULO_AFILIADO_1"/></a><br/>
<a href="LINK_AFILIADO_2" title="TITULO_AFILIADO_2" rel="follow" target="_blank"><img src="IMAGEN_AFILIADO_2" alt="" title="TITULO_AFILIADO_2"/></a><br/>
</marquee>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br />
Esta es la linea para colocar nuevos afiliados:
Código:
<a href="LINK_AFILIADO_2" title="TITULO_AFILIADO_2"><img src="IMAGEN_AFILIADO_2" alt="" title="TITULO_AFILIADO_2"></a><br/>
Para controlar la velocidad deven modificar esto:
Cita:<marquee height="100%" width="100%" behavior="scroll" direction="left" scrollamount="3" scrolldelay="30" loop="true" onmouseover="this.stop()" onmouseout="this.start()">
.See Ya!