Q: How do I remove unwanted page tabs in drupal 6? A: Follow the instructions in this article - http://drupal.org/node/483324
Yet another post about trimming away unwanted stuff from drupal so that your website better matches your target web design! This time it's about removing unwanted page tabs. In my case I wanted to remove to tabs from the userplus module's screen - the 'assign user roles' and 'assign user groups' tabs. The client doesn't want them so they just have to go!
This approach assumes you have written (or are going to write) a module but after that it is quite easy.
Following the instructions on the above mentioned page I just added the following function to my module (called communication_centre), cleared the cache and the tabs happily disappeared!!
function communication_centre_menu_alter(&$items) { // remove the 'Assign User Roles' and 'Assign User Groups' tabs from // the Userplus Administration Pages as they're not required. // See http://drupal.org/node/483324 for details...
// Set these tabs to MENU_CALLBACK, so they still register the path, // but just don't show the tab: $items['admin/user/userplus/userperms']['type'] = MENU_CALLBACK; $items['admin/user/userplus/usergroups']['type'] = MENU_CALLBACK; }
[...] Drupal - Remove Unwanted Page Tabs | Pride Web Design Cork www.pridedesign.ie/content/drupal-remove-unwanted-page-tabs – view page – cached Pride Web Design Cork are award winning website designers, online marketing and internet services company, we are based in Cork, Ireland. Tweets about this link Topsy.Data.Twitter.User['shaneod'] = {"location":"Cork","photo":"http://a3.twimg.com/profile_images/73638319/shane_002_normal.jpg","name":"shane o donnell","url":"http://twitter.com/shaneod","nick":"shaneod","description":"Web Designer Cork","influence":""}; shaneod: “Drupal - Remove Unwanted Page Tabs: Q: How do I remove unwanted page tabs in drupal 6?A: Follow the instructions i... http://bit.ly/bPHprj ” 7 days ago view tweet retweet Filter tweets [...]
Did you find this post helpful? If so, we'd love to hear from you in our comments! If you found it really useful we'd love a link from your Blog-Web Site, to us!
[...] Drupal - Remove Unwanted Page Tabs | Pride Web Design Cork www.pridedesign.ie/content/drupal-remove-unwanted-page-tabs – view page – cached Pride Web Design Cork are award winning website designers, online marketing and internet services company, we are based in Cork, Ireland. Tweets about this link Topsy.Data.Twitter.User['shaneod'] = {"location":"Cork","photo":"http://a3.twimg.com/profile_images/73638319/shane_002_normal.jpg","name":"shane o donnell","url":"http://twitter.com/shaneod","nick":"shaneod","description":"Web Designer Cork","influence":""}; shaneod: “Drupal - Remove Unwanted Page Tabs: Q: How do I remove unwanted page tabs in drupal 6?A: Follow the instructions i... http://bit.ly/bPHprj ” 7 days ago view tweet retweet Filter tweets [...]