| :: |
| Author |
Message |
PDD_20
Joined: 23 May 2008 Posts: 29 Location: Spain
|
Posted: Fri May 23, 2008 4:50 pm Post subject: Only the meta tag description |
|
|
Hi, I would like use only the meta tag description of the mod meta tags dynamics.
Can someone help me?
Bye and thanks |
|
|
| Back to top |
|
 |
|
 |
SeO Administrateur - Site Admin

Joined: 15 Mar 2006 Posts: 3477
|
|
| Back to top |
|
 |
PDD_20
Joined: 23 May 2008 Posts: 29 Location: Spain
|
Posted: Sat May 24, 2008 10:51 am Post subject: Re: Only the meta tag description |
|
|
| SeO wrote: | Keywords won't hurt, but it would not be hard to get rid of them, have you tried installing the mod as is ?
Why would you get rid of the meta keywords? |
I want use my keyowords in all my pages but i want a description diferent in my pages.
I have install PHPbbseo mod in the style Glacier, I would like use onlye the metatag dynamic of descripcion.
Thanks |
|
|
| Back to top |
|
 |
PDD_20
Joined: 23 May 2008 Posts: 29 Location: Spain
|
Posted: Sat May 24, 2008 1:52 pm Post subject: Re: Only the meta tag description |
|
|
Hi of new.
Now, I have the metatag description only but I small question.
I would like add the words of portal and index to all metatags description but I have add this, in the portal and the index are duplicate.
Can someone help me?
Thanks |
|
|
| Back to top |
|
 |
SeO Administrateur - Site Admin

Joined: 15 Mar 2006 Posts: 3477
|
Posted: Sun May 25, 2008 1:16 pm Post subject: Re: Only the meta tag description |
|
|
I don't think it's efficient to repeat the same keywords in all pages, same for description.
To add specific keywords and desc with this mod is not difficult, in the index.php code you for example have :
| Code: | // www.phpBB-SEO.com SEO TOOLKIT BEGIN - META
$seo_meta->meta['meta_desc'] = $seo_meta->meta_filter_txt($config['sitename'] . ' : ' . $config['site_desc']);
$seo_meta->meta['keywords'] = $seo_meta->make_keywords($seo_meta->meta['meta_desc']);
// www.phpBB-SEO.com SEO TOOLKIT END - META |
You can add what you want for the index from here :
| Code: | // www.phpBB-SEO.com SEO TOOLKIT BEGIN - META
$seo_meta->meta['meta_desc'] = "Index.php description";
$seo_meta->meta['keywords'] = "index, keywords";
// www.phpBB-SEO.com SEO TOOLKIT END - META |
Same for all pages, just fill these two vars before page_header() is called. |
_________________ phpBB SEO || SEO Forum || Forum Référencement
GYM Sitemap & RSS for phpBB3 has been released ! || GYM Sitemap & RSS for phpBB3 est disponible ! |
|
| Back to top |
|
 |
PDD_20
Joined: 23 May 2008 Posts: 29 Location: Spain
|
Posted: Sun May 25, 2008 1:28 pm Post subject: Re: Only the meta tag description |
|
|
| SeO wrote: | I don't think it's efficient to repeat the same keywords in all pages, same for description.
To add specific keywords and desc with this mod is not difficult, in the index.php code you for example have :
| Code: | // www.phpBB-SEO.com SEO TOOLKIT BEGIN - META
$seo_meta->meta['meta_desc'] = $seo_meta->meta_filter_txt($config['sitename'] . ' : ' . $config['site_desc']);
$seo_meta->meta['keywords'] = $seo_meta->make_keywords($seo_meta->meta['meta_desc']);
// www.phpBB-SEO.com SEO TOOLKIT END - META |
You can add what you want for the index from here :
| Code: | // www.phpBB-SEO.com SEO TOOLKIT BEGIN - META
$seo_meta->meta['meta_desc'] = "Index.php description";
$seo_meta->meta['keywords'] = "index, keywords";
// www.phpBB-SEO.com SEO TOOLKIT END - META |
Same for all pages, just fill these two vars before page_header() is called. |
No, I did this but it show the title in metatag description. |
|
|
| Back to top |
|
 |
SeO Administrateur - Site Admin

Joined: 15 Mar 2006 Posts: 3477
|
Posted: Sun May 25, 2008 1:33 pm Post subject: Re: Only the meta tag description |
|
|
| It only uses the title in the description when the meta['meta_desc'] var was not filled before the call to page_header(), otherwise it won't. It's to generate custom description for all pages, even if not all indeed have one, like faq.php, things like that. |
_________________ phpBB SEO || SEO Forum || Forum Référencement
GYM Sitemap & RSS for phpBB3 has been released ! || GYM Sitemap & RSS for phpBB3 est disponible ! |
|
| Back to top |
|
 |
|
|