[Solved] Can I add new meta lines in overall_header.php
-
- BBCoder II
- Posts: 39
- Joined: 04 Jun 2011, 14:17
[Solved] Can I add new meta lines in overall_header.php
When I view source of index:
<meta name="keywords" content="" />
<meta name="description" content="" />
that display, so I was thinking onl for viewtopic and viewforum the meta tags are used.
So is it possible for me to add under the two meta's the same meta's again but fill them up.
<meta name="keywords" content="" />
<meta name="description" content="" />
that display, so I was thinking onl for viewtopic and viewforum the meta tags are used.
So is it possible for me to add under the two meta's the same meta's again but fill them up.
Last edited by master412160 on 31 Oct 2011, 15:24, edited 1 time in total.
Hello please check out my Interview Site, Interviewed You
- Stoker
- Site Admin
- Posts: 3560
- Joined: 12 May 2008, 23:26
- BBCodes: 239
- Favourite BBCode: Anipro
- Favourite MOD: PrettyPhoto
- Location: Denmark
- Contact:
Can I add new meta lines in overall_header.php
Forum SEO only covers viewforum.php and is displayed when viewing a forum.
Board rules! No PM support
-
- BBCoder II
- Posts: 39
- Joined: 04 Jun 2011, 14:17
Can I add new meta lines in overall_header.php
I know that very well. But my question is can I just add the meta tag for keywords and description twice in the overall_header.php
Without causing the seo mod not to work, so the meta is useless due being used twice.
So it would look like this:
Without causing the seo mod not to work, so the meta is useless due being used twice.
So it would look like this:
Code: Select all
<meta name="keywords" content="<!-- IF SCRIPT_NAME == "viewforum" -->{FORUM_SEO_KEY}<!-- ELSEIF SEO_KEY -->{SEO_KEY}<!-- ENDIF -->" />
<meta name="description" content="<!-- IF SCRIPT_NAME == "viewforum" -->{FORUM_SEO_DESC}<!-- ELSEIF SEO_DESC -->{SEO_DESC}<!-- ENDIF -->" />
<meta name="keywords" content="keyword 1, kewyrod 2," />
<meta name="description" content="This is a description for the index." />
Hello please check out my Interview Site, Interviewed You
-
- BBCoder II
- Posts: 39
- Joined: 04 Jun 2011, 14:17
Can I add new meta lines in overall_header.php
I was hoping to have got a reply by now?
Hello please check out my Interview Site, Interviewed You
- Stoker
- Site Admin
- Posts: 3560
- Joined: 12 May 2008, 23:26
- BBCodes: 239
- Favourite BBCode: Anipro
- Favourite MOD: PrettyPhoto
- Location: Denmark
- Contact:
Can I add new meta lines in overall_header.php
Close. You have to wrap the second instance with:
<!-- IF SCRIPT_NAME == "index" -->
to make sure its only displayed on index.Board rules! No PM support
-
- BBCoder II
- Posts: 39
- Joined: 04 Jun 2011, 14:17
Can I add new meta lines in overall_header.php
Alright.
<!-- IF SCRIPT_NAME == "index" -->
<meta name="keywords" content="keyword 1, kewyrod 2," />
<meta name="description" content="This is a description for the index." />
<! ENDIF -->
like that?
<!-- IF SCRIPT_NAME == "index" -->
<meta name="keywords" content="keyword 1, kewyrod 2," />
<meta name="description" content="This is a description for the index." />
<! ENDIF -->
like that?
Hello please check out my Interview Site, Interviewed You
-
- BBCoder II
- Posts: 39
- Joined: 04 Jun 2011, 14:17
Can I add new meta lines in overall_header.php
Alright now I tried to put that code on some places now, but it doesn't work.
Were to put it?
Were to put it?
Hello please check out my Interview Site, Interviewed You
- Stoker
- Site Admin
- Posts: 3560
- Joined: 12 May 2008, 23:26
- BBCodes: 239
- Favourite BBCode: Anipro
- Favourite MOD: PrettyPhoto
- Location: Denmark
- Contact:
Can I add new meta lines in overall_header.php
As the code here: viewtopic.php?f=33&t=1471&p=9119#p9064
Board rules! No PM support
-
- BBCoder II
- Posts: 39
- Joined: 04 Jun 2011, 14:17
Can I add new meta lines in overall_header.php
I tried this and it didn't work:
<meta name="keywords" content="<!-- IF SCRIPT_NAME == "viewforum" -->{FORUM_SEO_KEY}<!-- ELSEIF SEO_KEY -->{SEO_KEY}<!-- ENDIF -->" />
<meta name="description" content="<!-- IF SCRIPT_NAME == "viewforum" -->{FORUM_SEO_DESC}<!-- ELSEIF SEO_DESC -->{SEO_DESC}<!-- ENDIF -->" />
<!-- IF SCRIPT_NAME == "index" -->
<meta name="keywords" content="keyword 1, kewyrod 2," />
<meta name="description" content="This is a description for the index." />
<! ENDIF -->
<meta name="keywords" content="<!-- IF SCRIPT_NAME == "viewforum" -->{FORUM_SEO_KEY}<!-- ELSEIF SEO_KEY -->{SEO_KEY}<!-- ENDIF -->" />
<meta name="description" content="<!-- IF SCRIPT_NAME == "viewforum" -->{FORUM_SEO_DESC}<!-- ELSEIF SEO_DESC -->{SEO_DESC}<!-- ENDIF -->" />
<!-- IF SCRIPT_NAME == "index" -->
<meta name="keywords" content="keyword 1, kewyrod 2," />
<meta name="description" content="This is a description for the index." />
<! ENDIF -->
Hello please check out my Interview Site, Interviewed You