Exclude title

Drupal

  • Para evitar que se muestre el título de un nodo en particular, se puede usar Exclude node title, que agrega al formulario de edición del nodo un check para indicar eso.
  • Para usar google webfonts se puede usar el módulo  Google Webfont Loader, pero también se puede hacer modificando el template.php del tema. Por ejemplo:
    mytheme/template.php
    
    function mytheme_preprocess_page(&$vars, $hook) {
      ...
      // Google Fonts
      $vars['head'] .= '<link '. drupal_attributes(array(
        'rel' => 'stylesheet',
        'type' => 'text/css',
        'href' => 'http://fonts.googleapis.com/css?family=Share|Pontano+Sans')
      ) ." />\n";
      ...
    }