Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- http://dominiquedecooman.com/blog/how-remove-drupal-default-node-page-aka-default-front-page-view
- <?php
- /**
- * Implementation of hook_menu_alter().
- */
- function my_module_menu_alter(&$callbacks) {
- unset($callbacks['node']);
- }
- ?>
- http://dominiquedecooman.com/blog/drupal-7-tip-how-automate-and-control-your-go-live-checklist
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement