Good day

I maked node--forum.tpl.php ( i modify node.tpl )

But not any changes im my subtheme

What i must write in templete.php ?

Comments

mths’s picture

If you put it in you templates folder you should not need to change anything, but you do have to empty your cache at admin/config/development/performance

If you want to override a region for a specific content type (a problem that's related to yours and I just had to solve for myself) that requires a function in your template.php, namely:

function <your theme name>_alpha_preprocess_region(&$vars) {
  $menu_object = menu_get_object();
  if (isset($menu_object->type) && $vars['region'] == 'content') {
    if (isset($menu_object->type)) {
      $vars['theme_hook_suggestions'][] = 'region__content__' . $menu_object->type;
    }
  }
}

After that you can create for example a region--content--YOUR CONTENT TYPE.tpl.php in your templates folder. Clear cache.