May
27
2010
0
By David Luhman
Drupal provides some "formatting tips" just before the submit button when creating nodes.
Sometimes you want to override this text to provide your own "tips" for node creation. Here's how to do this :
In your theme's template.php file, add the following function :
function phptemplate_filter_tips($tips, $long = FALSE, $extra = '') {
return 'Your tips here';
}
Also see this post : http://drupal.org/node/35122
Categories: