The blog contains tips for drupal development using the Drupal content management system/framework.
Dominique De Cooman is a freelance drupal developer/consultant doing drupal development in the whole of Europe.
Feel free to contact me to hire me for your drupal development
Or you could use
Or you could use hook_menu_alter.
<?php/**
* Implementation of hook_menu_alter().
*/
function my_module_menu_alter(&$callbacks) {
unset($callbacks['node']);
}
?>
If you allready have a custom
If you allready have a custom module enabled that would be a good solution too.