Search code examples
drupaldrupal-6drupal-theming

theme_status_messages() is not firing in my Drupal 6 theme


I have a template.php file with a theme called themename_status_messages

It's not being called/invoked by my theme.

When I use devel themer info on a test dsm output, I am told the candidate functions are: theme_messages_alter_status_messages()
themename_messages_alter_status_messages()

I'm not sure why the status_messages() call isn't being called during page load. Any ideas?


Solution

  • Looks like the problem was there was a module enabled that changed how this was handled, and I didn't know the module was there and did that. The module was Messages Alter. Taught me a good less on in check the modules page for mysteries.