Página 1 de 1
Atorado en instalacion Welcome Mod
Publicado: 04 Ago 2010, 06:36
por thedarkroomalive
Asi como lo dice el tema, empeze a instalar el Welcome Mod 2.0.0 y hasta ahora voy bien pero cuando llevo a la parte de overall header de buscar la linea
Código: Seleccionar todo
<!-- IF U_PRINT_PM --><li class="rightside"><a href="{U_PRINT_PM}" title="{L_PRINT_PM}" accesskey="p" class="print">{L_PRINT_PM}</a></li><!-- ENDIF -->
</ul>
pues no encuentro la linea

les adjunto mi overall_header tanto de mi tema crystalline y de prosilver gracias

Re: Atorado en instalacion Welcome Mod
Publicado: 04 Ago 2010, 07:13
por leviatan21
Hola
thedarkroomalive :
No lo encuentras por que tu estilo no tiene esos enlaces, comentame que es lo que te pide agregar y veremos donde colocarlo

Re: Atorado en instalacion Welcome Mod
Publicado: 04 Ago 2010, 08:20
por thedarkroomalive
me pide en overall header de prosilver
encontrar
Código: Seleccionar todo
<!-- IF U_PRINT_PM --><li class="rightside"><a href="{U_PRINT_PM}" title="{L_PRINT_PM}" accesskey="p" class="print">{L_PRINT_PM}</a></li><!-- ENDIF -->
</ul>
y
agregar despues:
Código: Seleccionar todo
<ul class="linklist navlinks">
<!-- IF S_USER_LOGGED_IN -->
<li class="leftside"> {S_WELCOME} {WELCOME_REGISTERED}</li><li class="rightside">{LAST_VISIT_DATE} | {CURRENT_TIME}</li>
<!-- ELSE -->
<li class="leftside"> {S_WELCOME} {WELCOME_GUEST}</li><li class="rightside">{CURRENT_TIME}</li>
<!-- ENDIF -->
</ul>
y en subsilver 2
encontrar:
Código: Seleccionar todo
<div id="datebar">
<table width="100%" cellspacing="0">
<tr>
<td class="gensmall"><!-- IF S_USER_LOGGED_IN -->{LAST_VISIT_DATE}<!-- ENDIF --></td>
<td class="gensmall" align="{S_CONTENT_FLOW_END}">{CURRENT_TIME}<br /></td>
</tr>
</table>
</div>
</div>
y Remplazar por:
Código: Seleccionar todo
<div id="datebar">
<table class="tablebg" width="100%" cellspacing="1">
<tr>
<td class="cat" colspan="2"><h4>{L_WELCOME}</h4></td>
</tr>
<tr>
<td class="row1" width="100%"><div style="float:right;">
<!-- IF S_USER_LOGGED_IN -->{LAST_VISIT_DATE}</strong><!-- ELSE --></strong>{CURRENT_TIME}<!-- ENDIF -->
<!-- IF S_USER_LOGGED_IN --><br />{CURRENT_TIME}<!-- ENDIF --></span></div>
<!-- IF not S_IS_BOT and S_USER_LOGGED_IN -->
<span class="gensmall">
<strong>{S_WELCOME} {WELCOME_REGISTERED}</strong>
<!-- ELSE -->
<strong>{S_WELCOME} {WELCOME_GUEST}</strong>
</span>
<!-- ENDIF -->
</div>
</td>
</tr>
</table>
</div>
y supuse yo que debia hacerlo en el overall header del crystalline pero ni en prosilver ni en crystalline

Re: Atorado en instalacion Welcome Mod Tema Solucionado
Publicado: 04 Ago 2010, 08:58
por leviatan21
En el caso de tu estilo
crystalline debería ser así :
Abrir :
Buscar :
Código: Seleccionar todo
<ul class="linklist rightside">
<li class="icon-faq"><a href="{U_FAQ}" title="{L_FAQ_EXPLAIN}">{L_FAQ}</a></li>
Antes, agregar :
Código: Seleccionar todo
<ul class="linklist navlinks">
<!-- IF S_USER_LOGGED_IN -->
<li class="leftside"> {S_WELCOME} {WELCOME_REGISTERED}</li><li class="rightside">{LAST_VISIT_DATE} | {CURRENT_TIME}</li>
<!-- ELSE -->
<li class="leftside"> {S_WELCOME} {WELCOME_GUEST}</li><li class="rightside">{CURRENT_TIME}</li>
<!-- ENDIF -->
</ul>
Re: Atorado en instalacion Welcome Mod
Publicado: 04 Ago 2010, 18:47
por thedarkroomalive
muchas gracias ya quedo
