phpBB How To Remove Index From Home Page Title
6/16/2013By default phpBB forum will display your home page title like "index page • web design forum". 9 times out of 10 most don't want "index page" to be in there for SEO purposes. Here is how to remove the index page portion and the • portion. Removing both from the home page only, and leaving the other pages to function as default.
Step 1: Navigate to forum/language/en/common.php.
Search for...
'INDEX' => 'Index Page',
Replace with...
'INDEX' => '',
Step 2: Navigate to forum/styles/prosilver/template/overall_header.html. This below edit essentially says if it's index page ingnore "•". And if it's all other pages use it.
Search for...
<title>{SITENAME} <!-- IF S_IN_MCP -->{L_MCP} • <!-- ELSEIF S_IN_UCP -->{L_UCP} • <!-- ENDIF -->{PAGE_TITLE}</title>
Replace with...
<title>{PAGE_TITLE} <!-- IF SCRIPT_NAME neq 'index'-->• <!-- ENDIF --> <!-- IF S_IN_MCP -->{L_MCP} • <!-- ELSEIF S_IN_UCP -->{L_UCP} • <!-- ENDIF -->{SITENAME}</title>