Topic: SEO modifications
Hi all,
I'm actually optimizing my PunBB, I'll use this post to share with you what I change.
First thing, the TITLE...
I made this to use board description on home page.
./header.php (Line ~84)
$audio_title = generate_crumbs(true);
$audio_title = str_replace("(Page 1)", "", $audio_title);
if (FORUM_PAGE == 'index') {$forum_head['title'] = '<title>'.$forum_config['o_board_desc'].'</title>';}
else {$forum_head['title'] = '<title>'.$audio_title.'</title>';}==> This will remove "(Page 1)" in title too but it keep pagination for other pages.
