Page 1 of 1

portal link not showing up

Posted: 1. November 2009 15:27
by Jonasty
Your Portal Version: 1.0.0RC3
Your phpBB Type: Standard phpBB3
MODs installed: Yes
Your knowledge: Basic Knowledge
Boardlink: http://www.retrohelpers.co.cc

What have you done before the problem was there?
installed the portal with easymod, dutch language

What have you already tryed to solve the problem?
searched the CMS pages of the portal, but it's probably in one of the many files

Description and Message
screen of the problem:
Image

normally I should get portal < forumoverzicht
please help asap, thanks

Re: portal link not showing up

Posted: 1. November 2009 16:38
by Mike
open overall_header.html
find:

Code: Select all

<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a> <!-- BEGIN navlinks --> <strong>&#8249;</strong>
find in line:

Code: Select all

<li class="icon-home">
in line add after:

Code: Select all

<!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> &#187; <!-- ENDIF -->
Knowledge Base: Changes to forums styles

Re: portal link not showing up

Posted: 1. November 2009 16:52
by Jonasty
thank you very much for te fast response
works now

Regards

Re: portal link not showing up

Posted: 22. June 2010 10:46
by helwoe
I have the same problem as this person. No portal link anywhere on the portal page?!?
Tried all that has been suggested with no good results.
Re-checked installation again and cant figure this out.
Using Rockettheme's Refraction theme (subsilver based I believe)
(http://www.thelegionhq.com)

helwoe

Re: portal link not showing up

Posted: 22. June 2010 12:21
by Marc
You have already asked that in a different topic, so please don't spam around.

Re: portal link not showing up

Posted: 22. June 2010 21:58
by helwoe
Actually two separate topics.
Portal PAGE not showing up.
Portal LINK not showing.
But I'll keep it to one post as you wish.

helwoe

Re: portal link not showing up

Posted: 23. June 2010 00:26
by Jonasty
helwoe wrote:Actually two separate topics.
Portal PAGE not showing up.
Portal LINK not showing.
But I'll keep it to one post as you wish.

helwoe
if you look closely, this topic has been answered already...
why don't you just use the answer?
it worked for me (I'm the topic starter all the way back then...)

Regards, Jonas

Re: portal link not showing up

Posted: 23. June 2010 20:08
by helwoe
I'm glad it worked for you.
However it is not working for me despite my best efforts these last few days.
Open to any and all suggestions.. ;)

helwoe

Re: portal link not showing up

Posted: 23. June 2010 20:19
by Jonasty
helwoe wrote:I'm glad it worked for you.
However it is not working for me despite my best efforts these last few days.
Open to any and all suggestions.. ;)

helwoe
does it work with the standard styles (sub/prosilver)?
if it does, look for the code in the solution above in one of the files inside that theme, instead overall_header; not sure that this will work but I think it's worth a try

Best Regards, Jonas

Re: portal link not showing up

Posted: 26. June 2010 01:01
by helwoe
Jonasty wrote:
does it work with the standard styles (sub/prosilver)?
if it does, look for the code in the solution above in one of the files inside that theme, instead overall_header; not sure that this will work but I think it's worth a try

Best Regards, Jonas
Thanks for your reply.

Wow, it does work in the prosilver theme?!?
But in the refraction theme still no portal link.
EDIT: just noticed the portal link is at the bottom of the page.

This theme is based on prosilver, and I applied all the edits changes/file copies to the prosilver & refraction folders and files. However the styles/refraction/template/overall_header.html I could not find the lines noted in the instructions..

Looking for this:

Code: Select all

<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a> <!-- BEGIN navlinks --> <strong>&#8249;</strong>
Nothing even close to the above line.

Looking for this:

Code: Select all

<div class="navbar">
Found & Edited:

Code: Select all

<!-- IF REF_MENUPOSITION == full -->
<!-- IF not $S_IN_PORTAL or S_DISPLAY_PHPBB_MENU -->
		<div class="navbar">
After changes (clear cache, refresh templates, themes, images (even clearing cache folder) I get this error:

Parse error: syntax error, unexpected $end in /home/content/t/h/e/thelegionadmin/html/phpbb3/cache/tpl_refraction_overall_header.html.php on line 459


Looking for this:

Code: Select all

					<li class="icon-logout"><a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="x">{L_LOGIN_LOGOUT}</a></li>
				<!-- ENDIF -->
			</ul>

			<span class="corners-bottom"><span></span></span></div>
		</div>
Found:

Code: Select all

					<li class="icon-logout"><a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="l">{L_LOGIN_LOGOUT}</a></li>
				<!-- ENDIF -->
			</ul>
</div>
		</div>
		<!-- ELSE -->
But the needed <--ELSE-->> statement is already there?!?

So thats where I'm at... I'm sure it's a matter of adding code but I'm lost trying to figure it out.
Thanks again.

Re: portal link not showing up[SOLVED]

Posted: 26. June 2010 08:50
by helwoe
solved

in styles/refraction/overall_header.html

added this:

Code: Select all

<!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> &#187; <!-- ENDIF -->
Here:

Code: Select all

<!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> &#187; <!-- ENDIF --><a href="{U_INDEX}" accesskey="h" class="pathway">{L_INDEX}</a> <!-- BEGIN navlinks --><img src="{T_THEME_PATH}/images/arrow.png" alt=""  /><span class="no-link"><a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a></span><!-- END navlinks --></span>
</div><!-- ENDIF -->
Moved it to the far left for left menu item.

helwoe

Re: portal link not showing up[SOLVED]

Posted: 26. June 2010 16:12
by Jonasty
helwoe wrote:solved

in styles/refraction/overall_header.html

added this:

Code: Select all

<!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> &#187; <!-- ENDIF -->
Here:

Code: Select all

<!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> &#187; <!-- ENDIF --><a href="{U_INDEX}" accesskey="h" class="pathway">{L_INDEX}</a> <!-- BEGIN navlinks --><img src="{T_THEME_PATH}/images/arrow.png" alt=""  /><span class="no-link"><a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a></span><!-- END navlinks --></span>
</div><!-- ENDIF -->
Moved it to the far left for left menu item.

helwoe
glad for you :)

Best Regards