Closed (fixed)
Project:
Views (for Drupal 7)
Version:
6.x-2.9
Component:
page displays
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
28 May 2010 at 00:16 UTC
Updated:
13 Jun 2010 at 09:00 UTC
Jump to comment: Most recent
Comments
Comment #1
Anonymous (not verified) commentedArguments are passed to page views through the URL. To make this work, you'll need to edit your page view's path to include a '/%' at the end (i.e. if your view's path is currently 'my_nodes', change it to 'my_nodes/%'). This means that you'll be providing an argument in the URL (specified by the % sign) which in this case will be the taxonomy term.
Once you've edited your path, view the page on the front end of your site and put the term at the end of the URL (e.g. 'my_nodes/cats').
Hope that helps!
Comment #2
probocop commentedThat makes perfect sense, thank you very much!