How to hide the user account tabs 06/04/2016 Juan Jesús Trigo Drupal/PHP Senior developer /** * Implements hook_menu_alter(). */ function MYMODULE_menu_alter(&$items) { $items['user/register']['type'] = MENU_CALLBACK; $items['user/password']['type'] = MENU_CALLBACK; $items['user/login']['type'] = MENU_CALLBACK; }
Users Reset the administrative user password with Drush in Drupal 7 Antonio Jesús Mantis Benítez In this snippet we will reset the Drupal administrative user password using a Drush command Read article Reset the administrative user password with Drush in Drupal 7 La Drupalera ajmantis
Others Change the theme of your portal with Drush Pepe García The objective of this snippet is to teach you how to change the theme of your portal through Drush with vset. Read article Change the theme of your portal with Drush La Drupalera José García García
Others Importing data from a CSV file Diego Marrufo Rodríguez For that, you should create a PHP file (For example, in the DOCUMENT_ROOT of Drupal) and include the source code that indicates continuation. Read article Importing data from a CSV file La Drupalera dimaro