How do I stop the meta data being output to the page output?
Every time I set specific meta data for a page, the meta data is printed with the page output, meta data NEVER gets seen by the individual, so gould a DEV pleas point me to the the part of the CMS that controls this output as this annoying to say the least and it ruins the page layout.
Page Meta data
-
- Forum Members
- Posts: 75
- Joined: Sun Nov 08, 2009 1:31 pm
Page Meta data
CMSMS 1.6.7, Apache 2.0 Web Server, Red Hat Linux Server, PHP 5.2.12
Re: Page Meta data
Hi tgnc.org.uk
Metadata can be placed in the page editor at Page Specific Metadata under the tab Options
In the html template will be the {process_pagedata} tag which calls this field.
And there is the {metadata} tag in the template that calls the Metadata which is entered in Site Admin >> Global settings
Hope this helps,
Rolf
Metadata can be placed in the page editor at Page Specific Metadata under the tab Options
In the html template will be the {process_pagedata} tag which calls this field.
And there is the {metadata} tag in the template that calls the Metadata which is entered in Site Admin >> Global settings
Hope this helps,
Rolf

- + - + - + - + - + - + -
LATEST TUTORIAL AT CMS CAN BE SIMPLE:
Migrating Company Directory module to LISE
Migrating Company Directory module to LISE
- + - + - + - + - + - + -
Re: Page Meta data
The problem most likely is that they are putting plain text into the metadata box not doing it like a normal meta tag should be done...
Note the " /> a lot of people forget to close them...
Note the " /> a lot of people forget to close them...
-
- Forum Members
- Posts: 75
- Joined: Sun Nov 08, 2009 1:31 pm
Re: Page Meta data
Thanks.
The issue I was having was the raw text list was being output at the head of the page ranter than being wrapped in a meta tag. The input box does not make it clear that you have to include the HTML as well.
It might be a good widget to make to check for a <meta tag, if non present then wrap the contents of the text area prior to stuffing it in the database. The meta text I did not input, my friend did, so I will tell him off.
Question now is how do I mark this post as resolved?
The issue I was having was the raw text list was being output at the head of the page ranter than being wrapped in a meta tag. The input box does not make it clear that you have to include the HTML as well.
It might be a good widget to make to check for a <meta tag, if non present then wrap the contents of the text area prior to stuffing it in the database. The meta text I did not input, my friend did, so I will tell him off.
Question now is how do I mark this post as resolved?
CMSMS 1.6.7, Apache 2.0 Web Server, Red Hat Linux Server, PHP 5.2.12
Re: Page Meta data
Oh, so you were not putting the "meta" tag where necessary, just plain text. This was asked for many times before.
To mark the thread as [Solved], edit the first post in this thread, and modify the subject line.
To mark the thread as [Solved], edit the first post in this thread, and modify the subject line.
Re: Page Meta data
The thing about the metadata box per page is that it doesn't know what kind of metadata you are going to put in it so you have to use an html based meta call...
Re: Page Meta data
In the following post you will find some tricks to make the use of the description and keywords metadata easier:
http://forum.cmsmadesimple.org/index.ph ... 912.0.html #4 and #5
Regards, Rolf
http://forum.cmsmadesimple.org/index.ph ... 912.0.html #4 and #5
Regards, Rolf
- + - + - + - + - + - + -
LATEST TUTORIAL AT CMS CAN BE SIMPLE:
Migrating Company Directory module to LISE
Migrating Company Directory module to LISE
- + - + - + - + - + - + -
-
- Forum Members
- Posts: 75
- Joined: Sun Nov 08, 2009 1:31 pm
[SOLVED] Re: Page Meta data
Thanks for the feed back.
@DR Css ... As for meta type... I guess you could make a pull down to indicate what type but generally a keyword list is something separated by a space or comma, or both comma and space. So a RegExp to test for " ", "," or ", " possibly would cure this detection issue.
As for the raw text, I automatically assumed this is what would be put in.
@DR Css ... As for meta type... I guess you could make a pull down to indicate what type but generally a keyword list is something separated by a space or comma, or both comma and space. So a RegExp to test for " ", "," or ", " possibly would cure this detection issue.
As for the raw text, I automatically assumed this is what would be put in.
CMSMS 1.6.7, Apache 2.0 Web Server, Red Hat Linux Server, PHP 5.2.12