私は、 "video_by_category"という名前のビューに、ビデオ/カテゴリ/%のパスを持ち、%はタクソノミーの用語を探しています。用語は「車」とすることができる。 このビューのカスタムページテンプレートをpage.tpl.phpと同じように作成したいとします。私はpage-video-category、page-video_by_category.tpl.php、page-views-view-video-category.tpl.phpのようないくつかのテーマ提案をしましたが、何も動いていません。これはどうすればできますか?ビューのDrupalページテンプレートファイル
私はこれ持っている私のtemplate.phpで:
function theme428_preprocess_page(&$variables) {
if ($variables['node']->type != "") {
if (arg(0)=='node' && arg(2)!='edit') { // not for node edit forms
if(arg(1)!=''){
$arg1='-'.arg(1);
}
//$variables['template_files'][] = "page-node-" . $variables['node']->type.$arg1;
$variables['template_files'][] = "page-node-" . $variables['node']->type;
}
}
//print_r($variables['template_files']);
$variables['scripts'] = drupal_get_js();
return $variables;
}
おかげで