Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
259 views

Retrieving names of over-ridden theme hooks in views 2 (Drupal 6)

I have a created a view (lets call it my_view). In the theme: information section if the view I have noted one of the suggested template names (views-view--my-view--default.tpl.php (or close to ...
2
votes
1answer
2k views

How do I add a form to a view with drupal 6.x views 2?

I want to add a drupal form to the top of a view. The view does not need to receive the results of the form but the _submit hook of the form should be able to read the first argument of the view that ...
1
vote
1answer
24 views

Drupal: Field of View is not presented on the page that was created by this View

I have an ImageField in my View. It is not exluded from output. It is presented in preview. But when I open the page created by the View - it is not presented there. How can I diagnose this issue ? ...
1
vote
1answer
580 views

Drupal6 views: output “taxonomy:all terms” field with two terms as two links

Briefly: I'm making a custom view, I want a field listing the two taxonomy terms associated with an NID to output as two distinct links which return arguments for the view (term1 to view/term1, term2 ...
1
vote
2answers
274 views

Drupal: change view argument

I searched far and wide to find a working solution to this but couldn't find it. What I want to do is change the argument that is passed to the view because I want for pathauto cleaned taxonomy terms ...
0
votes
0answers
167 views

Refresh Drupal Views Display Block Drupal

I have a Block display built in Views2. It's a Dynamic display block (slideshow of nodes). I am passing different Organic Group id's as an argument to this view's block, so that it can show different ...
0
votes
1answer
67 views

Can't create custom handler for Views2

Basically I want to create a custom handler to unserialize a db field called birthday. I've managed to correctly output the field serialized using the default views_handler_field. Unfortunately When ...
0
votes
2answers
229 views

How are custom 'notafield' handlers defined for Views 2 (Drupal 6)

I can only find docs for predefined handlers. I guess I would have to override one of the handler classes, but which methods do I actually have to override? I read somewhere that new handler for Views ...
0
votes
3answers
1k views

Drupal: retrieve data from multiple node types in views 2?

...or, in other words, how to create a simple join as I would do in SQL? Suppose I want the following information: Just as an example: a person's full name a person's hobbies. His full name is ...