Page 1 of 1

non-published notes text field with each page

Posted: Thu Jan 29, 2009 10:25 am
by stevegos
Hi

I would love to see a section on each page where you could type in some notes that pertain to only that page.

These would not be published to the public site, just kept private to the editor.

Perhaps a new tab called "Editor's Notes" on the top where the Main, Options and Preview tabs sit?

Steve

Re: non-published notes text field with each page

Posted: Thu Jan 29, 2009 10:28 am
by RonnyK
You could insert another content-block to the template, which opens another edit-area for every page.

With the use of CSS, you could then do a {display: none;} to not show it publicly, but have it accessible in the backend....

Ronny

Re: non-published notes text field with each page

Posted: Thu Jan 29, 2009 3:32 pm
by nhaack
With CSS disabled, you could see these notes... Also search engines might index these notes.

I would personally assign the block to a variable that I do not use... something like

{content block="editor_note" assign=junk}

Best
Nils

Re: non-published notes text field with each page

Posted: Thu Jan 29, 2009 3:32 pm
by calguy1000
Just put this in your template.
It should work.... and the output won't be on the page at all.

Code: Select all

{* {content block='notes'} *}

Re: non-published notes text field with each page

Posted: Thu Jan 29, 2009 5:25 pm
by stevegos
Thanks Calguy1000.

That works perfectly.

Steve