| |
| |
|
|
|
|
| |
|
| |
|
| :: |
| Author |
Message |
sceltic PR0

Joined: 04 May 2006 Posts: 55
|
Posted: Wed May 10, 2006 7:26 pm Post subject: category Page title in PHpbb |
|
|
I prefer to have just the page and forum title as the page title.
Not for instance
abc: page title
just
page title
I know how to do this for viewtopic and view forum
but notice that category produces the index title?
What would I need to change to get the Category Title as page title |
|
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15242
|
|
| Back to top |
|
 |
sceltic PR0

Joined: 04 May 2006 Posts: 55
|
Posted: Fri May 12, 2006 8:59 pm Post subject: Re: category Page title in PHpbb |
|
|
| the dynamic title mod sounds a very good idea |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15242
|
Posted: Sat May 13, 2006 9:51 am Post subject: Re: category Page title in PHpbb |
|
|
Here you go
| Code: | #
#-----[ OPEN ]------------------------------------------
#
/viewtopic.php
#
#-----[ FIND ]------------------------------------------
#
$page_title = $lang['View_topic'] .' - ' . $topic_title;
#
#-----[ REPLACE, WITH ]------------------------------------------
#
$page_title = $topic_title;
#
#-----[ OPEN ]------------------------------------------
#
/viewforum.php
#
#-----[ FIND ]------------------------------------------
#
$page_title = $lang['View_forum'] . ' - ' . $forum_row['forum_name'];
#
#-----[ REPLACE, WITH ]------------------------------------------
#
$page_title = $forum_row['forum_name'];
#
#-----[ OPEN ]------------------------------------------
#
/templates/*yourtemplate*/overall_header.tpl
#
#-----[ FIND ]------------------------------------------
#
<title>{SITENAME} :: {PAGE_TITLE}</title>
#
#-----[ REPLACE, WITH ]------------------------------------------
#
<title>{PAGE_TITLE}</title>
#
#-----[ OPEN ]------------------------------------------
#
/index.php
#
#-----[ FIND ]------------------------------------------
#
$page_title = $lang['Index'];
#
#-----[ REPLACE, WITH ]------------------------------------------
#
$page_title = "Your Top 3 - keywords/keyphrases - seperated by hiphens";
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM |
|
_________________ Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________
Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche |
|
| Back to top |
|
 |
|
| Navigation |
Similar Topics |
|
|
|
|
|
|
|
| |
|
|
|
|
| |
|
|
|
|
| |