Hey Mark,
mark wrote:
If you go to Extensions » Tags click on the word Help across from 'content', newer ver. CMSMS you can click the tag name for help, in help is the parameters for {content} the oneline='true' is supposed to make a single line input textarea like Title: or Menu Text: ...
Visited the Help page and here's a quick snippet:
What parameters does it take?
* (optional)block - Allows you to have more than one content block per page. When multiple content tags are put on a template, that number of edit boxes will be displayed when the page is edited.
Example:
{content block="Second Content Block"}
Now, when you edit a page there will a textarea called "Second Content Block".
* (optional)wysiwyg (true/false) - If set to false, then a wysiwyg will never be used while editing this block. If true, then it acts as normal. Only works when block parameter is used.
* (optional)oneline (true/false) - If set to true, then only one edit line will be shown while editing this block. If false, then it acts as normal. Only works when block parameter is used.
Tried it again - ok, I solved it!!
I copied your example earlier, and it had single quote marks around the word true, like this
oneline='true'
It actually needs two, like this:
oneline="true" [quotation marks, speech marks, inverted commas]
I've also added
wysiwyg="false" as the fckeditor is not needed for that one line, as I've already set it up with css in the template. So now it looks like:
{content block="thirdblocktitle" oneline="true" wysiwyg="false"}
{content block="thirdblock"}
Fantastic!
Thanks for the encouragement Mark!