If you are looking for drupal help that....
How to remove "More information about formatting options" from drupal? so you come on right place
Follow your theme path choose your theme
and open template.php
Search this function phptemplate_filter_tips_more_info in your template.php file and check that if it is exist or not
If exist so replace this function from last one
function phptemplate_filter_tips_more_info() { return ''; }
if not exist so please paste this function in your template.php anywhere where ever you want
/**
* 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 ''; }
Thanks for read my blog :)
ReplyDeletethanks information.