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.
|
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.
| |||||
feedback
|
|
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. | |||||
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 | |||
|
feedback
|
|
Assuming a view as a page, you can use the results of | |||
|
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 | ||||
|
feedback
|
|
using sillygwailo's suggestion I got this to work for me very nicely:
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. | |||
|
feedback
|
|
In a drupal 7 theme I added a template suggestion in template.php:
See http://api.drupalize.me/api/drupal/function/views_get_page_view/7 and http://drupal.org/node/223440#custom-suggestions for more information. | |||
|
feedback
|