The $view object is usually available (along with other useful information) to the theme preprocess functions for the particular template. (Intro to preprocessor functions if you are unfamiliar <a href="http://drupal.org/node/223430">http://drupal.org/node/223430</a>). Within YOURTHEME_preprocess_views_view() in your template.php, the devel module&#39;s dpm() function will help you inspect the $vars handed to the template function.<br>
<br>YOURTHEME_preprocess_views_view(&amp;$vars) {<br>  dpm($vars);<br>}<br><br>Any new functions added to a theme&#39;s template.php require a theme registry rebuild (clearing cache). Inspect dpm&#39;s output to see if the $view display is available and then create a new keyed-item in $vars for usage in the tpl file.<br>
<br><div class="gmail_quote">On Wed, Nov 17, 2010 at 12:29 PM, Brian Choc <span dir="ltr">&lt;<a href="mailto:bchoc@t4tcolorado.org">bchoc@t4tcolorado.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Is it possible to access a Display title from within the views-view.tpl.php file?<br><font color="#888888"><br>Brian<br>
</font><br>--<br>
[ Drupal support list | <a href="http://lists.drupal.org/" target="_blank">http://lists.drupal.org/</a> ]<br></blockquote></div><br>