Ver Mensaje Individual
  #4 (permalink)  
Antiguo 25/01/2012, 18:25
Avatar de NUCKLEAR
NUCKLEAR
Moderador radioactivo
 
Fecha de Ingreso: octubre-2005
Ubicación: Cordoba-Argentina
Mensajes: 5.688
Antigüedad: 18 años, 6 meses
Puntos: 890
Respuesta: theme drupal 7

Por default Drupal no te va a reconocer page--nodetype debes agregarle un hook al theme

Código PHP:
Ver original
  1. function THEME_preprocess_page(&$variables, $hook)
  2. {
  3.    
  4.     if (isset($variables['node'])) {
  5.         $variables['theme_hook_suggestions'][] = 'page__' . $variables['node']->type;
  6.     }
  7.  
  8.    
  9. }
__________________
Drupal Argentina