Page 1 of 1

Custom META DATA

Posted: Thu Mar 02, 2006 7:33 am
by URAN
I`m not very much in PHP and MySQL, but wonder if it possible to add ability to input custom meta data when creating a Content Page?

Without this option I`m not sure that it possible to create SEO-content (Seach Engine Optimized content) of my web with CMS MadeSimple engine.

Re: Custom META DATA

Posted: Thu Mar 02, 2006 10:58 pm
by westis
In 0.12 the head tags (that is, metadata in the section) is re-introduced. You can even set it for each page separately and also globally for all pages.

In 0.11.X, use a content block in the section of you template, like this:
{content block='headtags' wysiwyg=false}

Then you will get an additional content block when you edit a page, where you can insert the metadata for that page. You can of course also insert metadata for all pages in the template.

wysiwyg=false means that if you have selected to use a WYSIWYG editor, it is not used for the headtags content block.

Re: Custom META DATA

Posted: Fri Mar 03, 2006 8:19 am
by URAN
I do use 0.12. Well... I`m not sure that I clearly understand you. I was talking about two extra input fields to paste custom KEYWORDS and DESCRIPTION.

In the beginning I just made new HTML Blob named "meta".

In this Blob I pasted two rows with global meta-data for all web-site:

Code: Select all

<meta content="*******" name="keywords" />
<meta content="*******" name="description" />
... and add this html_blob to my template -  {html_blob name='meta'} between tags.



Now, I thing how to make this meta-data more "up-to-page". I thing it could be done by generating from TITLE this way:

1. Open/Create current HTML_Blob "meta" at Admin Page / Layout / HTML Blobs
2. Modify it to :

Code: Select all

<meta content="MAIN KEYWORDS, {title}, ADDITIONAL KEYWORDS" name="keywords" />
<meta content="MAIN DESCRIPTION, {title}, ADDITIONAL DESCRIPTION" name="description" />
I think it should work not perfect, but much more better than global meta for all web.

Re: Custom META DATA

Posted: Fri Mar 03, 2006 9:56 am
by LeisureLarry
Look in the options of each content page. There you can set individual meta data for each page.

Re: Custom META DATA

Posted: Fri Mar 03, 2006 10:52 am
by URAN
Ups, sorry..  :D I told a lie... my version is  0.11.2, not 0.12 ... Sorry. Will try to upgrade

Re: Custom META DATA

Posted: Mon Mar 06, 2006 7:34 am
by URAN
Patricia, so, my method of creating meta-data will not work too? I meaning pasting {title} into the line with meta-data:

Re: Custom META DATA

Posted: Mon Mar 06, 2006 10:37 am
by Ted
In beta2 it won't work.  When 0.12 is released, it will.  I fixed it the other day.

Re: Custom META DATA

Posted: Mon Mar 06, 2006 11:24 am
by URAN
Will looking forward for it! Hope upgrade from 0.11.2 to 0.12 will come soon.

Re: Custom META DATA

Posted: Thu Mar 30, 2006 11:54 am
by numer9
hey,
since 0.12 is up and running, i got another question. is there a chance to add some specific keywords into one page... i know there is options tab and textarea to insert additional fields. But i'm not sure if bots will read correctly the page, if it has 2 times...

Another words.
I'd like to have a global keywords like "word1, word2" and add "word3" only to page3 of my cms. But i want the engine to sum it, so i have only one tag on every page...

i hope i'm clear what i'm asking about ;)

Re: Custom META DATA

Posted: Thu Mar 30, 2006 2:42 pm
by calguy1000
why not create a "global content block" that contains all of the common keywords, then on your template, or on each page if you wish you could put

{common_keywords} inside of your meta tag, as well as the custom ones you want on each page.