I have this site where I let anonymous questions to be posted, but I realized that some users don't really want to post as an anon but just don't know they are doing it.
Is there a way to show a message in the ask page ( mysite.com/ask ) that just for unregistered or anon users? so I can put a warning like "You are asking a question as an anon, if you want, you can register here"
Thanks
Edit:
Using the idea given by q2apro.com I find that I need to add this in the place where I want the message to appear (in my case below $this->nav_main_sub(); inside qa-theme.php of the snow theme)
if (!qa_is_logged_in()) {
$this->output('MY MESSAGE');}
But I don't know how to check if I'm in the ask page or don't.