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 thee name
Don't forget to clear the template cache in your site Administer->Site Configuration->Performance->Clear Cached Data.
worked for drupal 6.19.
/*
* 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 thee name
Don't forget to clear the template cache in your site Administer->Site Configuration->Performance->Clear Cached Data.
worked for drupal 6.19.
Nice and very informative blogs.All point describe step by step. Thanks for sharing. - Website Development Companies.
ReplyDelete