tabs

0 answers

Jquery Ajax tab loading content from node

Read more »
0 answers

Create multi steps register user

Read more »


Remove Tabs from Drupal Site

Use the following function in '_phptemplate_variables' function in template.php. In the following code snippet, if I want to remove the "Edit" tab: <?php function _phptemplate_variables($hook, $vars = array()) {   if($hook == 'page') { yourthemename_removetab('Edit', $vars); // add additional lines here to remove other tabs }   return $vars; }   function yourthemename_removetab($label, &$vars) { $tabs = explode("\n", $vars['tabs']); $vars['tabs'] = '';   foreach($tabs as $tab) { if(strpos($tab, '>' . $label . '<') === FALSE) {