Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Pages: 1
#1 2008-12-14 13:55:47
- gaup
- Member
- Registered: 2006-12-03
- Posts: 37
Keywords
I have this in my head:
<meta name=“keywords” content=“sa, sa” />
<meta name=“author” content=“s”/>
<meta name=“ROBOTS” content=“ALL”/>
<txp:rsx_search_engine_meta />
and when I google, I get this: (only the checkout page)
…
From Guks and so on those are the name of categories. And it is only the page ckeckout which appears when I google.
Last edited by gaup (2008-12-15 18:18:20)
Offline
#2 2008-12-14 17:05:58
- els
- Moderator
- From: The Netherlands
- Registered: 2004-06-06
- Posts: 7,458
Re: Keywords
I think you need a <meta name="description" content="what you want Google to display" />
tag.
Offline
#3 2008-12-15 18:01:16
- gaup
- Member
- Registered: 2006-12-03
- Posts: 37
Re: Keywords
No, I have that tag also .
<meta name=“author” content=“s”/>
<meta name=“description” content=“S” />
<meta name=“keywords” content=” “/>
<meta name=“ROBOTS” content=“ALL”/>
<txp:rsx_search_engine_meta />
and; why does the link from the categorylist appear without comma between ? I have this tag for the the category: <txp:category_list wraptag=“ul” break=”“ class=“categoryNav” section=“ebutikk”/> (as you can see when I google this comes up, and those are my categories – …. )
can you delete the keyword from your archive – when I google now I got this post up?
Last edited by gaup (2008-12-15 18:21:11)
Offline
#4 2008-12-15 19:15:40
- gaup
- Member
- Registered: 2006-12-03
- Posts: 37
Re: Keywords
An another question about keywords; I found this on the wiki:
Example 1: Use article’s keywords for meta tag content
Keywords field contains: sauce,caramel,sugar
Tag: In the head of an individual article page <txp:meta_keywords />
Output: <meta name=“keywords” content=“sauce,caramel,sugar” />
Note: Tag returns nothing if no keywords are set for an article.
But, when I put in the keywords in article “keywords” the keywords are visible in the article.
Offline
#5 2008-12-15 20:38:32
- els
- Moderator
- From: The Netherlands
- Registered: 2004-06-06
- Posts: 7,458
Re: Keywords
Maybe the plugin you are using is a bit old?
But, when I put in the keywords in article “keywords” the keywords are visible in the article.
Then you must have a <txp:keywords />
tag in your article form, if you don’t need the keywords to be displayed in the article you can remove it.
Offline
#6 2008-12-15 21:43:55
- gaup
- Member
- Registered: 2006-12-03
- Posts: 37
Re: Keywords
you mean this plugin is too old?
<txp:rsx_search_engine_meta />
Offline
#7 2008-12-15 22:09:16
- els
- Moderator
- From: The Netherlands
- Registered: 2004-06-06
- Posts: 7,458
Re: Keywords
Yes, looking at the plugin thread it’s obviously not supported anymore, and apparently it stopped working three years ago ;) There is no need for a plugin like this though, you can do exactly the same with native Txp tag nowadays:
<txp:if_article_list>
<meta name="robots" content="noindex,follow" />
<txp:else />
<meta name="robots" content="index,follow" />
</txp:if_article_list>
Offline
Pages: 1