is there a way to not display any results initially until the form has been submitted?
Also, I cant see where I can override the exposed form
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As @googletorp mentioned, you can override the expose form using
hook_form_alter(): check out a couple examples in other questions to get an idea of how it works:To display a blank form unless the user fills out the exposed form, you can use
hook_views_query_alter()in a custom module: