Recent Topics

1 Apr 26, 2009 05:33    

My b2evolution Version: 2.x

If I view an individual post on my blog, the name of the page per the browser is "Blog Title - Post Title." If I view a category, the name of the page is "Category:NAME OF CATEGORY - Blog Title." Is there any way to change the latter page name to "Blog Title - Category:NAME OF CATEGORY" or "Blog Title - NAME OF CATEGORY"?

2 Apr 26, 2009 05:51

If I understand you right, you should change the 'title_single_before' to 'title_before' in _html_header.inc.php on line 33

3 Apr 26, 2009 05:56

Very nice! It changes it to "Blog Title - Category:NAME OF CATEGORY - Blog Title", which isn't exactly what I want to see, but it's much better than before. Thank you!

4 Apr 26, 2009 06:14

Then make it look like this

request_title( array(
	'format'				=> 'htmlhead',
	'title_before'			=> $Blog->get('name').' - ',
	'title_after'			=> '',
	'title_single_before'	=> '',
	'title_single_after'	=> '',
	'title_page_before'		=> '',
	'title_page_after'		=> '',
	'title_none'			=> $Blog->get('name','htmlhead'),
) );


Form is loading...