Community & Support

Remove 'Formatting guidelines'

Is it possible to prevent the 'Formatting guidelines' from appearing? I'm using Flexinode to create customized content types but don't want the Formatting guidelines showing up everytime a text box is present.

Comments

me too

I have a flexinode with a text area field that will be text only. No need for guidelines.

HofMonkey
Open-Source | Open-Access | Open-Mind

Michael Hofmockel

Open Source | Open Access | Open Mind

In modules > filter.module I

In modules > filter.module I changed line 801 from:

$extra = l(t('More information about formatting options'), 'filter/tips');

to:

//  $extra = l(t('More information about formatting options'), 'filter/tips');

http://www.supermarketingmedia.com

It's better to do this in

It's better to do this in the style.css so you don't loose your modifications when you update drupal. As long as it's not possible to adjust this through phptemplates, use the code below:

#comment_form .tips {
display:none;
}

and the link

#comment_form .tips, .tips + a {
display:none;
}

gets rid of the link too in browsers that recognize the sibling selector. (all the modern ones except IE6)

------------------------------------
Ronan - Gorton Studios - http://www.gortonstudios.com/

Careful with getting rid of

Careful with getting rid of #comment_form a stuff, it makes TinyMCE and bbcode wysiwyg buttons stop showing up :)

Though I have no idea how it would work with that particular notation coz I've never seen it before, would be nice if all it took out was the silly formatting guidelines links and left the buttons.

Unfortunately most of my users insist on using IE :(

works at bekandloz | plays at technonaturalist

just keep promoting firefox

just keep promoting firefox ;) and pray microsoft will fix the next IE browser..

drupal 5.1

I have tried this for drupal 5.1 but doesn't seem to work... although I am not good with css, and perhpas I have put it in the wrong place (:
Any help would be appreciated... many thanks
Drupalworld

Anywhere in style.css should

Anywhere in style.css should work.

works at bekandloz | plays at technonaturalist

not work with garland theme

i try to use with garland theme and it not work. please advise

bluemarine

doesn't work with bluemarine neither... I think the problem may be drupal5.1... as the previous posts date from before the great release :) But then again, I dont know much...
Drupalworld

Using color module?

If you are using the color module, you have to save your theme settings again. When doing this, the color module enabled theme will generate a new css from the original css file, which will end up in /files/color/[theme-name]-[some-number]/
Works fine here.

Try this

Looks like 5.1 has changed the id of the comment form and buried the link in a p tag.

I don't have a 5.1 install handy, so I haven't properly tested this, but this might work:

#comment-form .tips, #comment-form .tips + p a {
  display:none;
}

Two caveats:
- it will only work when there is just 1 format option
- it will only work on comment forms (hence the #comment-form)

If you want it to work on all forms use:

.tips, .tips + p a {
  display:none;
}

But I have no idea what loosening that restriction will do for anything else on the page so your mileage will vary.

Let me know if this works for you though.

------------------------------------
Gorton Studios - Websites that Work. http://www.gortonstudios.com/
http://www.gortonstudios.com/portfolio/technologies/drupal

------------------------------------
Ronan - Gorton Studios - http://www.gortonstudios.com/

It seems to be working for

It seems to be working for me, bluemarine, drupal 5.1.
Many thanks for this :)
Drupalworld

Works like a charm on 5.1

Ronan, this is great. Thanks a lot.

I use FCK editor for all users and therefore don't need no formatting tips for users.

I previously proposed to temper with a filter.module (see http://drupal.org/node/68137) , but your CSS code worked perfectly on 5.1 (a theme customized from Zen) . It even removed the "More information about formatting options". Perfection.

Thanks again!

----------------------------------------------------------------
Πλαστικός Χειρουργός

this worked for me in 4.7.

this worked for me in 4.7. but instead of having a link to nothing I guess it would be better to get rid of the "input format" link straight away? I have posted a topic on this but no reaction so far. I guess giving the option to an anonymous user to select something he/she doesn't understand isn't a wise thing to do nor giving them a link to nothing.. in my case the above code used works but still you see "input format" then you can choose between Full HTML and Filtered HTML, then if you click on the "More information about formatting options" it shows the Compose Tips with "input formats: "Filtered HTML" and "Full HTML" in a list and no links and no information.. if I were a normal user I would find it very stupid to come across such a page with something and nothing..
How would you feel?

Eeasy Solution

I have got rid of this only by putting these two 6 lines in my default css file which is style.css in my case.
.wysiwyg-editor-fckeditor .tips{
display:none;
}
#comment-form p{
display:none;
}

First one will work if you are using fckeditor and if not then you can search it by firebug that which class is implemented on form.
Here is my drupal site on which I have applied.
http://www.pepads.com/comment/reply/1557#comment-form

Every time ready to help others.

Every time ready to help others.

Thank you, thank you, thank

Thank you, thank you, thank you for the CSS fix. :-)

Visit me @ binaryblonde.com

override phptemplate_filter_tips_more_info()

mikesmullin posted some code (for a theme's template.php) to http://drupal.org/node/68137

/**
* Implementation of theme_filter_tips_more_info().
* Used here to hide the "More information about formatting options" link.
*/
function phptemplate_filter_tips_more_info() {
  return '';
}

I'm reposting the same code here with the exception that it now follows Drupal's coding standards.

also override theme_filter_tips()

Thanks for posting that code! It led me to the theme_filter_tips() function that controls the display of the formatting tips.

Get rid of the actual tips by adding this to your template.php:

<?php
/*
* Override filter.module's theme_filter_tips() function to disable tips display.
*/
function phptemplate_filter_tips($tips, $long = FALSE, $extra = '') {
  return
'';
}
?>

This solution avoids the CSS masking used above.

thanks a lot!!

thanks a lot!!

works fine but...

"More information about formatting options" link are still visible and when clicked you go to a page that says "Compose tips" with no content.. any idea on how to remove this link as well?

Just remember that using

Just remember that using display:none may be bad for your search engine rankings as they may see it as 'spam'; so if you can, and you want to be sure that your rankings won't be affected prevent it from being written in the first place using hacks to the core or theme overrides.

----------
http://www.irrow.com/

you can also add this code

you can also add this code in template.php:

<?php
/*
* Override filter.module's theme_filter_tips() function to disable tips display.
*/
function phptemplate_filter_tips($tips, $long = FALSE, $extra = '') {
  return
'';
}
function
phptemplate_filter_tips_more_info () {
  return
'';
}
?>

very nice javierreartes...

This is very nice solution without an ugly hack or css hocus pocus. Question...how can you do this in Drupal 6? I've tried it and it does'nt work. No surprise there as with every Drupal upgrade things change alot. However, I've looked at the functions in Drupal 6 and you're solution SHOULD actually work. Any ideas as to why it does'nt? Thanks again for the solution.

cheers,

wim

Thank you

Hi, I didn't tried this in Drupal 6 yet, but as you said it should work. You can try using the theme name instead the engine name, like "garland_filter_tips"

Alternatively, in D6 you can register the function as a template. For example you could create and empty file called "filter-tips.tpl.php" (underscore are changed with hyphens)

here is more info about it:
http://drupal.org/node/132442#theme-templates
http://drupal.org/node/173880

If you can make it work please post a comment here for future reference.

Bests,
Javier

I need this too

I'm using FCKeditor withe D6 and it works fine but the filter info below the text area is unnecessary and confusing. I'm too new to Drupal to hack this, so eternal gratitude offered to anyone who can!

Seems to me that this is something the FCKeditor module should do automatically whenever FCKeditor is enabled -- anyone found a hack for the module, rather than the template?

[EDIT 23/03/08]

Finally found how to disable this.

(1) As suggested by others, in modules/system/system.css:

.tips {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 0.9em;
  display: none; /* ADD THIS LINE */
}

(2) In modules/filter/filter.module:

/**
* Format a link to the more extensive filter tips.
*
* @ingroup themeable
*/
function theme_filter_tips_more_info() {
  return /*'<p>'. l(t('More information about formatting options'), 'filter/tips') .'</p>'
     COMMENT TO LEAVE ONLY return STATEMENT  */;
}

This leaves a nice clean form for non-HTML-savvy users. Probably not the best way to do it, but effective.

Perfect! Thanks

Perfect! Thanks :)

----------
Cheers, Sophia

Some of my Drupal websites:

http://ikwilemigreren.info
http://mystonline.info
http://harmonicamasters.info
http://loomknitting.info

----------
Cheers, Sophia

http://sophiahosting.com

Hacking core

Hacking core (modules/filter/filter.module) is about the wrongest way to do this - effective as it may be.

Still... not being able to deactivate this in an easy way is utter silliness. Removing something so common and prominently displayed (yet so confusing and unnecessary for the less technically inclined) in the front end should NOT require overriding PHP functions...

It's pretty common for

It's pretty common for Drupal sites to use theme overrides or have a site-specific module or two. The _filter_tips() and _filter_tips_more_info() functions that are mentioned above can be used either way.

Drupal 6

This advice worked for drupal 6.3 in my case. Add the following to template.php in themes/YourThemeName

/*
* Override filter.module's theme_filter_tips() function to disable tips display.
*/
function YourThemeName_filter_tips($tips, $long = FALSE, $extra = '') {
  return '';
}
function YourThemeName_filter_tips_more_info () {
  return '';
}

Don't forget to clear the template cache in your site Administer->Site Configuration->Performance->Clear Cached Data otherwise you won't see any change.

Thank you for that. I've

Thank you for that.

I've spent two evenings trying to find a D6 solution for:
· hiding the collapsible area (only solved by using one filter & one fckeditor profile per role)
· hiding the compose tips

What a ridiculous problem though. Does some dev out there really think it was a good idea to force users to choose an input filter, and to place a load of undecipherable garbage (it is to most people) under the text area of EVERY BLOODY DRUPAL SITE IN THE WORLD?? It's damn scary to think that this implementation of filters made it through a discussion process and two major versions of drupal. I hope filters are completely and utterly invisible to users in D7, unless the admin chooses to display them.

Unbelievable. For all its genius, sometimes drupal is so dumb.

Everything I say is opinion, even if interpreted as fact.
Sometimes I may be inaccurate or *GASP* wrong!
Sometimes I attack Drupal due to frustration. Get over it.

Thanks Ben !!

The snippet by ben.walsham worked perfectly for me.

Imran Khan
Project Manager
New Earth Marketing

Thanks.

Thanks.

Thanks. It worked perfectly!

Thanks. It worked perfectly! Just have to Administer->Site Configuration->Performance->Clear Cached Data

Thanks ben.walsham - that

Thanks ben.walsham - that worked great (after I cleared the cache).

Thanks. I'm using this.

Thanks. I'm using this.

Works

Thank You Ben that was really neat!

TmaX
-------------
inspritech.com

Works Great... but

I guess you can't make all browsers happy. Doesn't work on Safari.

Local:
Mac OS 10.5.8
Firefox 5.0.1

Server:
Apache 2.0.63
PHP 5.3.6
MySQL 5.0.92-community

This did not work for me - I

This did not work for me - I have changed the theme name.

This is your life, and it's ending one minute at a time

That works great for all

That works great for all content types and all fields site-wide, but is it possible to override these functions so that the filter tips are taken out only for a specific content type and/or a specific field?

Thanks!

Wrap tips in collapsed fieldset (Drupal 5)

Here's what I did to clean up the input formatting tips area (thanks and a tip o' the hat to all that came before me...)

The following theme overrides for Drupal 5 wraps all formatting tips related output in a collapsed fieldset (titled 'Formatting Information') when not viewing the 'compose tips' page (/filter/tips). The link to the formatting tips page opens in a new window ('target=blank'), in order to prevent possible loss of in-progress editing.

<?php
/**
* Implementation of theme_filter_tips()
*
* We want to put the filter tips into a collapsible and collapsed fieldset
* in order to reduce visual clutter.
*/

function phptemplate_filter_tips($tips, $long = FALSE, $extra = '') {
 
// $collapse determines whether we should collapse the input filter formatting
 
$tipspage = arg(0) == 'filter' && arg(1) == 'tips';
 
$collapse = !$tipspage;

 
// Invoke default implementation.
 
$output = theme_filter_tips($tips, $long, $extra);

 
// If we aren't viewing the 'Tips Page' (/filter/tips) then we add
  // a link at the bottom of the fieldset.
 
if (!$tipspage) {
     
$output .= '<p>'. l(t('More information about formatting options (opens in a new window)'), 'filter/tips', array('target'=>'_blank')) .'</p>';
  }

 
// If we want a 'collapsed' view, wrap output in a fieldset element
  // with the appropriate classes (.collapsible .collapsed).
 
if ($collapse && !empty($output)) {
     
$temp = '<fieldset class="collapsible collapsed"><legend>' . t('Formatting Information') . '</legend>' . $output . '</fieldset>';
     
$output = $temp;
  }
  return
$output;
}

/**
* Implementation of theme_filter_tips_more_info()
*
* Kill off the normal filter tips 'more info' link. 
* We add it to the Formatting Information fieldset
* @see phptemplate_filter_tips, above
*/
function phptemplate_filter_tips_more_info() {
    return
'';
}
?>

Hope the system will has the

Hope the system will has the option to disable the tips!
That's the best solution!

-----------------------
Join the community!

agree

agree

My blog ( drupal and more):
http://www.o-learn.com

As filter/tips - the page

As filter/tips - the page behind the "More information about formatting options" link - generates its filter tips with theme_filter_tips(), i came across the following solution to keep filter/tips intact:

(for drupal 6, but it shouldn't be very different in 5)

<?php
/* Implementation of theme_filter_tips()
* Remove filter tips under text input fields without touching the 'more info' link.
*/
function YourThemeName_filter_tips($tips, $long = FALSE, $extra = '') {
 
$output = '';

  if (
arg(0) == 'filter' && arg(1) == 'tips') {  // check if we are on the dedicated filter/tips page

   
$multiple = count($tips) > 1;
    if (
$multiple) {
     
$output = t('input formats') .':';
    }

    if (
count($tips)) {
      if (
$multiple) {
       
$output .= '<ul>';
      }
      foreach (
$tips as $name => $tiplist) {
        if (
$multiple) {
         
$output .= '<li>';
         
$output .= '<strong>'. $name .'</strong>:<br />';
        }

        if (
count($tiplist) > 0) {
         
$output .= '<ul class="tips">';
          foreach (
$tiplist as $tip) {
           
$output .= '<li'. ($long ? ' id="filter-'. str_replace("/", "-", $tip['id']) .'">' : '>') . $tip['tip'] .'</li>';
          }
         
$output .= '</ul>';
        }

        if (
$multiple) {
         
$output .= '</li>';
        }
      }
      if (
$multiple) {
       
$output .= '</ul>';
      }
    }

  }
  return
$output;
}
?>

This allows one to hide the actual tips and keep the link to "More information about formatting options". It should be the default behaviour for this whole thing, uncluttered interface plus help available.

...but by far, the EASIEST way to remove "more info about..."

...is to use the lovely "string overrides" module

simply adding a string override for "More information about formatting options" to be replaced by (and then instead of just leaving it blank, hit the space bar one time to insert a blank )

...and voila, it is gone for good - and no touching template.php, no touching filters module, nothing...it's a string like any other...

........................................................................
i love to waste time: http://twitter.com/passingnotes

........................................................................
i love to waste time: http://twitter.com/passingnotes

Using more modules slows

Using more modules slows Drupal down further.

That's akin to saying that

That's akin to saying that putting a windshield on your car makes it run slower.

When you really get down to it, installing Drupal makes your Web server run significantly slower than if you just let it sit there...

I get your argument that installing "yet another module" to make each and every adjustment on your site has an adverse effect on the site's overall speed, but many users already make us of String Overrides for dozens of other site tweaks making this a very viable option.

I'll admit I installed String Overrides to make this change initially, but quickly found many adjustments I could make with the excellent little module.

String Overrides puts a UI on

String Overrides puts a UI on top of functionality that's already in Drupal 6.x core. (If you don't want to use another module, you can still replace the strings in settings.php.) Besides, using String Overrides is much, much faster than the previous practice of using the core locale module to translate strings.

Thank you

Great solution!

This should do the trick

http://drupal.org/project/better_formats

Haven't tried it myself, but it says it'll hide the Format Tips when activated.

New module!

Yup.better_formats seems to be the module!

Medicine,Surgery ...and Drupal.

Medicine,Surgery ...and Drupal.

Was just going to post the exact same thing.

The better formats module solves this issue and more. Highly recommended. Use this or a form override in your template. DO NOT hack core to remove the tips.

-------------------------------------------------------------------
Rick Vugteveen | ImageX Media (work) | Blog (personal)

-------------------------------------------------------------------
Rick Vugteveen |rickvug.com @rickvug on Twitter

Another vote for Better

Another vote for Better Formats module.

Better formats is great for D6 but it's not yet available for D5.

I've just installed better formats module and it works fine with ordinary content types such as Page, Story, etc.
But I'm stuck with trying to get rid of the formatting tips when creating a biblio. i've also created new fields with cck.

I've done exactly the same creating a new content type and including new fields with cck.
This works with the better formats module and removes the formatting tips.

I can only assume that there's something hard coded in biblio somewhere?
Has anyone come across this themselves and worked out a fix?

JLT

Better formats works like a charm

Better formats solved the problem for me. Just install the module, go to permission and uncheck the Show Format Tips and save.

If you like it, rate it !

you could also post your gratitude (by rating it) on http://drupalmodules.com/module/better-formats#reviews that site is just awesome and many Drupallers use it to choose their set of modules.
Just in case you didn't know ;-)

Drupal on !

Oh, thanks for letting me

Oh, thanks for letting me know. I love to show gratitude and give credits wherever required/necessary. :)

right

I did not see the permissions option/features
solved
thanks
fab

fab
---
The gratest and best man, alone, never will overbear two perfect idiots well organized

vi filter.module comment

vi filter.module

comment these lines:

/* $form['format']['guidelines'] = array(
'#title' => t('Formatting guidelines'),
'#value' => theme('filter_tips', $tips, FALSE, $extra),
);
*/
}
// $form[] = array('#value' => $extra);

hi, does it work for drupal

hi,

does it work for drupal 5 ? any problem ?

thanks.

Modifying Drupal core this

Modifying Drupal core this way is a bad idea. Use template overrides instead.

better formats module works just fine!

download from http://drupal.org/project/better_formats
enable it
go to admin/user/permissions/1 ( or check the permissions for the anonymous user and you will find new permissions for the format option)
enable or disable the options about the format and that's it!!!
2minutes solution :P

doesn't work for me in some

doesn't work for me in some CCK fields (works on other CCK fields)
cafetiere expresso

i use this

Add the following to template.php in themes/YourThemeName

/*
* Override filter.module's theme_filter_tips() function to disable tips display.
*/
function YourThemeName_filter_tips($tips, $long = FALSE, $extra = '') {
  return '';
}
function YourThemeName_filter_tips_more_info () {
  return '';
}

Note :
add this code below <?php
Don't forget to change YourThemeName to your theme name
Don't forget to clear the template cache in your site Administer->Site Configuration->Performance->Clear Cached Data.
worked for drupal 6.19.

Ha!

But that option is no where to be found with better formats...least I don't know where to find it and I have it installed. I can change the name of the tip page, but not get rid of it, nor the text that inserted automatically by each input filter.

From www.phoenixstudios.com.np, A Small A/V Studio in Kathmandu Nepal

Don't you read the readme

Don't you read the readme file of your modules? It's in permissions, you have things to check added by better format.

only solution was the hack

Using 6.x, I tried everything from least invasive down to core trying to get rid of this and came down to the core hack - on all disappoints. Began with better format module and permission, to css theme template hack, to template.php theme hack, to css hack in system core to template core which finally worked but still had to get rid of menu link 'Compose tips'... here's what it regrettably came down to:

(1) As suggested by others, in modules/system/system.css:

.tips {
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
padding-bottom: 0;
font-size: 0.9em;
display: none; /* ADD THIS LINE */
}

(2) In modules/filter/filter.module:

/**
* Format a link to the more extensive filter tips.
*
* @ingroup themeable
*/
function theme_filter_tips_more_info() {
return /*'

'. l(t('More information about formatting options'), 'filter/tips') .'

'
COMMENT TO LEAVE ONLY return STATEMENT */;
}

3) To get rid of Compose tips in menu, search and comment out this block in modules/filter/filter.module:
$items['filter/tips'] = array(
'title' => 'Compose tips',
'page callback' => 'filter_tips_long',
'access callback' => TRUE,
'type' => MENU_SUGGESTED_ITEM,
'file' => 'filter.pages.inc',
);

I'm a newbie this month, but what a hack for such an ad hoc... how'd this come up anywho - how did this get into core? I think it suddenly appeared on me after a few modules installed but not sure which one....

Better formats does this job,

Better formats does this job, no need to (and DO NOT) hack the core.
After install, you must go to:
admin/user/permissions
admin/settings/filters/defauts
admin/settings/filters/settings

How to remove Formatting guidelines in Drupal 7?

How to remove formatting guideline from drupal 7 comments?

In D7 use something like

In D7 use something like this:

function yourtheme_form_comment_form_alter(&$form, &$form_state, &$form_id)
{
  $form['comment_body']['#after_build'][] = 'configure_comment_form';
}

function configure_comment_form(&$form) {
  $form['und'][0]['format']['guidelines']['#access'] = FALSE;
  return $form;
}

Drupal 7

where should I add this code?

You'd add it to your theme's

You'd add it to your theme's template.php.

Quick and dirty dirty

[Edit - after some closer examination, I don't recommend]
In your node.tpl.php, or whatever tpl you have for the parent entity of the comments:

<?php
hide
($content['comments']['comment_form']['comment_body']['und']['0']['format']['#theme_wrappers']);
?>

This will break WYSIWYG if you have it enabled.

Thanks @javierreartes.. Your

Thanks @javierreartes.. Your code works for me..

<?php

/**
* Remove the comment filters' tips
*/
function myTheme_filter_tips($tips, $long = FALSE, $extra = '') {
  return
'';
}
/**
* Remove the comment filter's more information tips link
*/
function myTheme_filter_tips_more_info () {
  return
'';
}
?>

How can we make this effect

How can we make this effect only Create new content. and make it display under comments input .

Eeasy Solution

I have got rid of this only by putting these two 6 lines in my default css file which is style.css in my case.
.wysiwyg-editor-fckeditor .tips{
display:none;
}
#comment-form p{
display:none;
}

First one will work if you are using fckeditor and if not then you can search it by firebug that which class is implemented on form.
Here is my drupal site on which I have applied.
http://www.pepads.com/comment/reply/1557#comment-form

Every time ready to help others.

I found my answer from this

I found my answer from this link: the text format selection

.filter-wrapper { display: none; }

This is the easiest solution,

This is the easiest answer, but it's also, to put it bluntly, one of the shittier ones. Anytime you use display: none; you're removing the visual display but keeping the html and any Drupal related processing that that code requires (inconsequential here, but would definitely be a problem if you were to hide more dynamic content or an imagecached image). So basically you're increasing download time and in some cases the load on your available memory/cpu for no reason at all.

I'm not saying that we should never use display: none; -- I've just seen this as an increasingly common answer in the forums and I think we should all be aware of its pros and cons. The reality is sometimes when you take into account your client's budget or your personal time input, quick and dirty wins against difficult and correct. But it's not really a solution. Redefine a function or use a preprocessor if you can.

I understand your point and I

I understand your point and I totally agree. But obviously this solution is for those who have no idea what exactly "Redefine a function or use a preprocessor" means, like me. Often when searching for answers there is the dirty css trick or the shit in your php files trick of which the former is the more permanent one. Although now my worry is that what else might stop displaying, and indeed quite a lot of fixes can be undoing previous fixes.

I just wish everything would be made turn on/offable, but I'm really grateful for all the code that's already out there and try to make the best of it to my capabilities.

Remove Formatting guidelines Drupal 7

template.php

<?php
 
function [theme_name]_form_comment_form_alter(&$form, &$form_state, $form_id)
  {
   
$form['comment_body']['#after_build'][] = 'remove_tips';
  }

  function
remove_tips(&$form)
  {
    unset(
$form['und'][0]['format']['guidelines']);
    unset(
$form['und'][0]['format']['help']);
    return
$form;
  }
?>

I found this tip here and I try it. It's work very well.
nobody click here