Página 1 de 1

(problemas) black pearl con portal

Publicado: 08 Abr 2009, 06:50
por KH_KoRn
Hola tengo problemas al instalar el portal(phpbb3-portal.1.2.2)con este template no puedo editar los archivos overall_header, overall_footer, breadcrumbs ya que no encuentro las lineas.

acá los archivos.

overall_header.html
http://www.phpbb-es.com/foro/pastebin.p ... =view&s=69" onclick="window.open(this.href);return false;
overall_footer.html
http://www.phpbb-es.com/foro/pastebin.p ... =view&s=70" onclick="window.open(this.href);return false;
breadcrumbs.html
http://www.phpbb-es.com/foro/pastebin.p ... =view&s=71" onclick="window.open(this.href);return false;
Open: styles/subsilver2/template/overall_header.html
Find
Tip: This may be a partial find and not the whole line.

Code: Select All
<div id="menubar">
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.

Code: Select All
<!-- IF not $S_IN_PORTAL -->
Find
Tip: This may be a partial find and not the whole line.

Code: Select All
<!-- INCLUDE breadcrumbs.html -->

<br />
Add after
Tip: Add these lines on a new blank line after the preceding line(s) to find.

Code: Select All
<!-- ENDIF -->
Open: styles/subsilver2/template/breadcrumbs.html
Find
Tip: This may be a partial find and not the whole line.

Code: Select All
<p class="breadcrumbs"><a href="{U_INDEX}">{L_INDEX}</a>
Replace With
Tip: Replace the preceding line(s) to find with the following lines.

Code: Select All
<p class="breadcrumbs"><a href="{U_PORTAL}">{L_PORTAL}</a> &#187; <a href="{U_INDEX}">{L_INDEX}</a>
Open: styles/subsilver2/template/overall_footer.html
Find
Tip: This may be a partial find and not the whole line.

Code: Select All
<!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF -->
Add after
Tip: Add these lines on a new blank line after the preceding line(s) to find.

Code: Select All
<!-- IF S_PORTAL_COPY --><br />{S_PORTAL_COPY}<!-- ENDIF -->



URL: http://www.clanwarriors.com.ar" onclick="window.open(this.href);return false;
Versión phpBB: phpBB3 (3.0.4)
MODs Instalados: Ninguno
Plantilla(s) usada(s): black_pearl
Servidor: Linux
Actualización desde otra versión: No
Conversión desde otro sistema de foros: No

Re: (problemas) black pearl con portal

Publicado: 08 Abr 2009, 10:46
por xoom
Haz sólo esto:

En breadcrumbs.html

Busca

Código: Seleccionar todo

<a href="{U_INDEX}">{L_INDEX}</a><!-- BEGIN navlinks -->&nbsp;&#187;&nbsp;<a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks -->
Cambiar por

Código: Seleccionar todo

<a href="{U_PORTAL}">{L_PORTAL}</a>&nbsp;&#187;&nbsp;<a href="{U_INDEX}">{L_INDEX}</a><!-- BEGIN navlinks -->&nbsp;&#187;&nbsp;<a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks --> 
En overall_footer.html

Busca

Código: Seleccionar todo

<!-- IF TRANSLATION_INFO -->{TRANSLATION_INFO}<br /><!-- ENDIF -->
A continuación, en una nueva línea, añade

Código: Seleccionar todo

<!-- IF S_PORTAL_COPY --><br />{S_PORTAL_COPY}<br /><!-- ENDIF -->

Re: (problemas) black pearl con portal

Publicado: 08 Abr 2009, 20:10
por KH_KoRn
Gracias :ok: