flup
05-15-2007, 10:00 PM
Title: Custom Pagetitles for different pages
Add-on for: Split ForumHome Page in Multiple Pages (https://vborg.vbsupport.ru/showthread.php?t=92201)
Template mod by: Joshua de Gier (flup)
What does it do?
I noticed a lot of people needed a custom title for their different pages, this template modification helps you to do this! It's just a little edit in the FORUMHOME template.
Here we go!
Go to your adminCP -> Style Manager -> Edit Templates
Select: Forum Home Templates and double click FORUMHOME
### Step 1: Search this line:
<title><phrase 1="$vboptions">$vbphrase[x_powered_by_vbulletin]</phrase></title>
### Step 2: Replace this line with:
<if condition="$_GET['page'] == 2">
<title>[B]Your Custom Pagetitle</title>
<else />
<title><phrase 1="$vboptions">$vbphrase[x_powered_by_vbulletin]</phrase></title>
</if>
### Step 3: More pages? Simple add this line above all:
<if condition="$_GET['page'] == 3">
<title>[B]Your Custom Pagetitle 2</title>
</if>
### The total codeview would look like this in this case:
<if condition="$_GET['page'] == 3">
<title>Your Custom Pagetitle 2</title>
</if>
<if condition="$_GET['page'] == 2">
<title>Your Custom Pagetitle</title>
<else />
<title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title>
</if>
Good luck and Have fun!
Add-on for: Split ForumHome Page in Multiple Pages (https://vborg.vbsupport.ru/showthread.php?t=92201)
Template mod by: Joshua de Gier (flup)
What does it do?
I noticed a lot of people needed a custom title for their different pages, this template modification helps you to do this! It's just a little edit in the FORUMHOME template.
Here we go!
Go to your adminCP -> Style Manager -> Edit Templates
Select: Forum Home Templates and double click FORUMHOME
### Step 1: Search this line:
<title><phrase 1="$vboptions">$vbphrase[x_powered_by_vbulletin]</phrase></title>
### Step 2: Replace this line with:
<if condition="$_GET['page'] == 2">
<title>[B]Your Custom Pagetitle</title>
<else />
<title><phrase 1="$vboptions">$vbphrase[x_powered_by_vbulletin]</phrase></title>
</if>
### Step 3: More pages? Simple add this line above all:
<if condition="$_GET['page'] == 3">
<title>[B]Your Custom Pagetitle 2</title>
</if>
### The total codeview would look like this in this case:
<if condition="$_GET['page'] == 3">
<title>Your Custom Pagetitle 2</title>
</if>
<if condition="$_GET['page'] == 2">
<title>Your Custom Pagetitle</title>
<else />
<title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title>
</if>
Good luck and Have fun!