good request - i join your thoughts
2 2009-11-05 12:10
Re: Too long title on topic posts page (5 replies, posted in PunBB 1.3 discussion)
no -- it didnt work -- looks like it stays the same
3 2009-11-04 10:38
Re: Spam! (22 replies, posted in Discussions)
where can I actually apply this extention?
4 2009-11-04 09:50
Re: Too long title on topic posts page (5 replies, posted in PunBB 1.3 discussion)
viewtopic.php
lines: 230-235
// Setup breadcrumbs
$forum_page['crumbs'] = array(
array($forum_config['o_board_title'], forum_link($forum_url['index'])),
array($cur_topic['forum_name'], forum_link($forum_url['forum'], array($cur_topic['forum_id'], sef_friendly($cur_topic['forum_name'])))),
array($cur_topic['subject'], forum_link($forum_url['topic'], array($id, sef_friendly($cur_topic['subject']))))
);
include/functions.php
lines: 501-533
// Generate breadcrumb navigation
function generate_crumbs($reverse)
{
global $lang_common, $forum_url, $forum_config, $forum_page;
$return = ($hook = get_hook('fn_generate_crumbs_start')) ? eval($hook) : null;
if ($return != null)
return $return;
if (empty($forum_page['crumbs']))
$forum_page['crumbs'][0] = $forum_config['o_board_title'];
$crumbs = '';
$num_crumbs = count($forum_page['crumbs']);
if ($reverse)
{
for ($i = ($num_crumbs - 1); $i >= 0; --$i)
$crumbs .= (is_array($forum_page['crumbs'][$i]) ? forum_htmlencode($forum_page['crumbs'][$i][0]) : forum_htmlencode($forum_page['crumbs'][$i])).((isset($forum_page['page']) && $i == ($num_crumbs - 1)) ? ' ('.$lang_common['Page'].' '.forum_number_format($forum_page['page']).')' : '').($i > 0 ? $lang_common['Title separator'] : '');
}
else
for ($i = 0; $i < $num_crumbs; ++$i)
{
if ($i < ($num_crumbs - 1))
$crumbs .= '<span class="crumb'.(($i == 0) ? ' crumbfirst' : '').'">'.(($i >= 1) ? '<span>'.$lang_common['Crumb separator'].'</span>' : '').(is_array($forum_page['crumbs'][$i]) ? '<a href="'.$forum_page['crumbs'][$i][1].'">'.forum_htmlencode($forum_page['crumbs'][$i][0]).'</a>' : forum_htmlencode($forum_page['crumbs'][$i])).'</span> ';
else
$crumbs .= '<span class="crumb crumblast'.(($i == 0) ? ' crumbfirst' : '').'">'.(($i >= 1) ? '<span>'.$lang_common['Crumb separator'].'</span>' : '').(is_array($forum_page['crumbs'][$i]) ? '<a href="'.$forum_page['crumbs'][$i][1].'">'.forum_htmlencode($forum_page['crumbs'][$i][0]).'</a>' : forum_htmlencode($forum_page['crumbs'][$i])).'</span> ';
}
($hook = get_hook('fn_generate_crumbs_end')) ? eval($hook) : null;
return $crumbs;
}
where do i fix to remove
<title>.....- PunBB 1.3 discussion - PunBB Forums</title>
for example on this forum topic page ... ???
5 2009-11-03 09:03
Topic: Cigarettes forum (0 replies, posted in PunBB show off)
I have just complete it and added all SEO extentions it needs
have a look
6 2009-11-03 08:56
Topic: Too long title on topic posts page (5 replies, posted in PunBB 1.3 discussion)
I noticed, it is too long title on topic posts page ... I think it is not too good for SEO
How to make title on topic name only???
I also dont like "(Page1)" and whatever in title tag ...
<title> tag could be nicer
for example this topic:
<title>Too long title on topic posts page (Page 1) - PunBB 1.3 discussion - PunBB Forums</title>
7 2009-11-03 08:39
Re: Search engines are not picking up forums and posts (5 replies, posted in PunBB 1.3 discussion)
Go on with link building ... and never stop
- robots.txt
- sitemap.xml
- use all SEO extentions for punBB
- use google webmaster tools
8 2009-11-03 08:35
Re: PunBB sitemap generator (2 replies, posted in PunBB 1.3 discussion)
thanks that is really helpful ... people say it is not friendly with google webmaster tools
9 2009-11-02 21:49
Topic: PunBB sitemap generator (2 replies, posted in PunBB 1.3 discussion)
Real important question ... Where can i get a mod, plugin or something to empower my favorite punBB with sitemap generator???
THX for your answers