Your Portal Version: 1.0.0RC3
Your phpBB Type: Standard phpBB3
MODs installed: No
Your knowledge: Basic Knowledge
Boardlink: http://www.fishing-victoria.com/
What have you done before the problem was there?
n/a
What have you already tryed to solve the problem?
n/a
Description and Message
Google has our site indexed as:
Fishing Victoria Forum • Portal
If you search: https://www.google.com.au/search?q=fishing+victoria
How do we remove the word " • Portal" from the title that appears in Google?
Thanks
Homepage Title *Remove the word "Portal"?
Forum rules
Before creating a new support thread, please take a look at the board3 Portal FAQ and use the search!
Many questions have already been answered.
Before creating a new support thread, please take a look at the board3 Portal FAQ and use the search!
Many questions have already been answered.
Re: Homepage Title *Remove the word "Portal"?
3550 views and not one response?
come on members!
come on members!
-
- Dev
- Posts: 2504
- Joined: 17. July 2008 21:08
- phpBB.de User: marc1706
- phpBB.com User: Marc
- Location: Clausthal-Zellerfeld / München
- Contact:
Re: Homepage Title *Remove the word "Portal"?
This part of overall_header.html adds the page title to your forum's title:
Removing the page title part will remove it on all pages though. Something that might fit what you want is this approach:
Open styles/*yourstyle*/template/overall_header.html
Find:
Replace with:
Open portal.php
Find:
Replace with:
Code: Select all
<title>{SITENAME} • <!-- IF S_IN_MCP -->{L_MCP} • <!-- ELSEIF S_IN_UCP -->{L_UCP} • <!-- ENDIF -->{PAGE_TITLE}</title>
Open styles/*yourstyle*/template/overall_header.html
Find:
Code: Select all
<title>{SITENAME} • <!-- IF S_IN_MCP -->{L_MCP} • <!-- ELSEIF S_IN_UCP -->{L_UCP} • <!-- ENDIF -->{PAGE_TITLE}</title>
Code: Select all
<title>{SITENAME}<!-- IF S_IN_MCP or S_IN_UCP or PAGE_TITLE --> • <!-- IF S_IN_MCP -->{L_MCP} • <!-- ELSEIF S_IN_UCP -->{L_UCP} • <!-- ENDIF -->{PAGE_TITLE}<!-- ENDIF --></title>
Find:
Code: Select all
page_header($user->lang['PORTAL']);
Code: Select all
page_header();
Re: Homepage Title *Remove the word "Portal"?
Thank you!
Is "•" necessary?
there is still an "•" appearing at the end of the title
Is "•" necessary?
there is still an "•" appearing at the end of the title
-
- Dev
- Posts: 2504
- Joined: 17. July 2008 21:08
- phpBB.de User: marc1706
- phpBB.com User: Marc
- Location: Clausthal-Zellerfeld / München
- Contact:
Re: Homepage Title *Remove the word "Portal"?
If you properly followed my instructions you should no longer see the bullet point. Make sure you refreshed your template cache.