I have a view which is modified by a views template page – this is in Drupal 6.
I’m trying to figure out a condition to affect the layout. Currently, the element seems to be generated in page.tpl.php, which is fine, but I want to add a condition for this specific page, in order to add an id to this element.
For other pages, I’ve used the node id to do this, as such:
else if ($node->nid == '250' || $node->nid == '429' || $node->nid == '555' || $node->nid == '378') {print '<h1'. ($tabs ? ' class="with-tabs"' : '') .' id="medspecheader">'. $title .'</h1>';}
But I’m not sure how to do this with the view page. Is there a machine name that I can use, or something to affect the layout?