How can I create a custom page.tpl.php for a specific view?

I'm not talking about styling the view itself, just the page where that view gets rendered.

Thank you.

@Keith Morgan - It's page.

link|improve this question

1  
The approach depends on what kind of view display you are working with. Is it page or block for example? – keithm Dec 2 '10 at 18:09
feedback

6 Answers

up vote 3 down vote accepted

You can create a template file to theme almost any aspect of views output. In your case you want to create a custom template for your page display.

On the view designer, click the Theme link in Basic Settings. You'll see some template file naming options depending on if you want to theme the whole view (e.g., views-view--example--page.tpl.php), each row (e.g., views-view-fields--example--page.tpl.php) and so on.

Copy the appropriate template you want to customize from /sites/all/modules/views/theme to your theme and customize as you wish.

Once you create your custom template file, you can go back to the view designer Theme link to make sure it is being used. Your template should be bolded.

Hope this helps.

link|improve this answer
1  
Isn't the OP asking about theming the page when a view is active and not the view itself? When you have a view with a page display, the topmost template is still derived from views-view.tpl.php, which doesn't include any page elements. This still gets stuffed into the whatever page template is active. – MPD Dec 3 '10 at 17:59
feedback

There's some documentation on template suggestions, and you might be interested in page.tpl.php suggestions. If it's a page view, you could use a path suggestion. So if your view is at http://www.example.com/photos, the page.tpl.php file would be named page-photos.tpl.php.

link|improve this answer
feedback

Assuming a view as a page, you can use the results of page_manager_get_current_page() in your preprocess to determine if your view is active, then take the appropriate steps (tack on body classes, add a template suggestion, etc).

link|improve this answer
feedback

Had a similar problem, which was remedied by putting a .tpl.php in my theme's template folder. The naming convention for a page display of views in drupal 7 is page--path-to-view.tpl.php

link|improve this answer
feedback

using sillygwailo's suggestion I got this to work for me very nicely:

function YOUR-THEME-NAME_preprocess_page(&$vars) {

 //allow template suggestions based on url paths.  
 $alias = drupal_get_path_alias(str_replace('/edit','',$_GET['q'])); 
 if ($alias != $_GET['q']) { $suggestions = array();
 $template_filename = 'page'; 
 foreach (explode('/', $alias) as $path_part) {
 $template_filename = $template_filename . '-' . $path_part; 
 $suggestions[] = $template_filename;
 } 
 $alias_array = explode('/', $alias);
 $variables['template_files'] = $suggestions; 

Then if your view is at www.example.com/photos , create a page-photos.tpl.php in your theme directory and drupal will use that as your template.

link|improve this answer
feedback

In a drupal 7 theme I added a template suggestion in template.php:

function sovon_preprocess_page(&$variables) {   
if(views_get_page_view())   {
    $variables['theme_hook_suggestions'][] = 'page__view';      
}
}

See http://api.drupalize.me/api/drupal/function/views_get_page_view/7 and http://drupal.org/node/223440#custom-suggestions for more information.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.