User login

Views

Exclude the current node from also showing up in a block View

  1. Add an argument for Node: nid
  2. Set 'Action to take if argument is not present' to 'Provide default argument'
  3. Set 'Default argument type' to 'Node ID from URL'
  4. Check 'Exclude the argument'

From http://drupal.org/node/131547

Field templates are run before row templates, not vice versa

Field template are run before the row template.

This:
views-view-field--products--page-4--field-imagecrop-fid.tpl.php

is processed before this:
views-view-fields--products--page-4.tpl.php

The individual fields are run and then handed off to the row.

That is, the row template isn't run and given the chance to call and pass info into the field templates.

Can views template files go in a subdirectory of a theme?

Yes! And not just a single views folder, but directories under that for view name and even, beneath that, display name. Dividing by view name is I think as far as we'll want to go.

See:
Organizing your Views templates
http://drupal.org/node/430980

Syndicate content