By horaceho on
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
a couple suggestions
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;}
Thanks for the help!
Thanks for the help!