1. Removing formatting guidelines through a Drupal module.
The first option is getting the Better Formats module.
Please note that the Drupal 7 version is currently under heavy development and the above solution works best for the Drupal 6 version.
2. Theme Template File
Since the first method does not work best in Drupal 7. A good alternative is to input the following code in your themes template.php file.
/**
* 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 '';
}
/**
* 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 '';
}
Source: msathesh
All images remain property of their original owners. Site & code © 2015