Skip to main content

Changing Joomla module title

Do you know that we can dynamically change the Joomla module title right in the module layout?

We can control the title via $module variable available in layout.

The simple example is having dynamical 'Hi Username,' title for login module where Username will be changed for current user.

Edit the layout of mod_menu and add 1 line of PHP:

$module->title = JText::sprintf('MOD_LOGIN_HINAME', htmlspecialchars($user->get('name')));

Terms used:

Module, PHP, Joomla