CCK fields - how can I remove the formatting guidelines?
JeniferTucker - June 11, 2009 - 17:53
Does anyone know how I can remove this from being displayed underneath a CCK field group?
* Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
* Lines and paragraphs break automatically.
* Use <bib>citekey</bib> or [bib]citekey[/bib] to insert automatically numbered references.
* Use [fn]...[/fn] (or <fn>...</fn>) to insert automatically numbered footnotes.
* Use [# ...] to insert automatically numbered footnotes. Textile variant.
* Web page addresses and e-mail addresses turn into links automatically. (Better URL filter.)
* Web page addresses and e-mail addresses turn into links automatically.
* You may use [view:viewname] tags to display listings of nodes.I installed the 'better formats' module following a link, but this only works with normal content types, such as page, story and any that you create yourself.
Anyone out there having the same problem?

Hiding format tips
Hi,
I added the following functions to my theme template to override the output, as my site users enter content with an RTE and don't need to worry about the formatting...
/** Override filter.module's theme_filter_tips() function to disable tips display.
*/
function mytheme_filter_tips($tips, $long = FALSE, $extra = '') {
return '';
}
function mytheme_filter_tips_more_info () {
return '';
}
Overriding filter tips
Great, thanks for this. I'll give it a go.
JLT