| |
| |
|
|
|
|
| |
|
| |
|
| :: |
| Author |
Message |
rbb
Joined: 09 Oct 2007 Posts: 9
|
Posted: Tue Oct 09, 2007 4:30 pm Post subject: [meta tags] remove title meta tag |
|
|
Trying to figure out how to remove the title meta tag??
Any help appreciated! |
|
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
Posted: Thu Oct 11, 2007 7:53 am Post subject: Re: [meta tags] remove title meta tag |
|
|
Why would you want to do so ?
Anyway, it's all in the phpbb_seo_class.php file, you need to comment or delete these lines :
| Code: | | $title = ( $this->seo_meta['meta_title'] != '' ) ? $this->seo_meta['meta_title'] : $page_title; |
and :
| Code: | | 'meta_title_def' => $this->meta_filter_txt($board_config['sitename']), |
Then replace :
| Code: | | $this->seo_meta = array('meta_tpl' => '<meta name="title" content="%s">' . "\n" . '<meta name="description" lang="%s" content="%s">' . "\n" . '<meta name="keywords" content="%s">' . "\n" . '<meta name="category" content="%s">' . "\n" . '<meta name="robots" content="%s">'. "\n", |
With :
| Code: | | $this->seo_meta = array('meta_tpl' => '<meta name="description" lang="%s" content="%s">' . "\n" . '<meta name="keywords" content="%s">' . "\n" . '<meta name="category" content="%s">' . "\n" . '<meta name="robots" content="%s">'. "\n", |
And :
| Code: | | return sprintf( $this->seo_meta['meta_tpl'], $title, $this->seo_meta['meta_lang'], $meta_desc, $keywords, $this->seo_meta['meta_cat'], $this->seo_meta['meta_robots'] ); |
With :
| Code: | | return sprintf( $this->seo_meta['meta_tpl'], $this->seo_meta['meta_lang'], $meta_desc, $keywords, $this->seo_meta['meta_cat'], $this->seo_meta['meta_robots'] ); |
++ |
_________________ Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________
Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche |
|
| Back to top |
|
 |
|
| Navigation |
Similar Topics |
|
|
|
|
|
|
|
| |
|
|
|
|
| |
|
|
|
|
| |