I installed a new theme for my site recently and the errors that pop up when you make a mistake on a form have stopped appearing, but only while in this theme.

It's obviously something that theme is over riding, anyone have any ideas of how I can correct this?

Comments

koshea’s picture

Look in the page.tpl.php file for the theme. There should be a line with something along the lines of:

<?php if ($messages): print $messages; endif; ?>

If you don't see any line relating to $messages, this is probably your problem. Add the line above wherever you would like them to display.

--kevin

achaeon’s picture

Very nice! that was it. Thank you!