I have a CCK content type, say, Interview record, with the following fields:

- Title
- Description (body)
- 1st Interview (date)
- 2st Interview (date)
- Final Interview (date)

Example node:

Title: Peter
Description: Apply for marketing trainee
1st Interview: 2009/04/15
2st Interview: 2009/05/20
Final Interview: 2009/06/02

In the monthly (April) calendar view, how can I show "1st Review" title only, hiding the date text (2009/04/15).

Thanks

Comments

ryantdecker’s picture

I believe you can simply overwrite the output of that field in views to display only "1st Review" either using a replacement string or by simply replacing the output with text. you can also use CSS to accomplish hiding it using display:none

something like:

.views-fieldname-content {display:none;}

horaceho’s picture

Thanks for the help!