MyBB Community Forums

Full Version: [ASK] writing becomes Icon Alerts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
anyone know how to change the word "Alerts" became an icon
[Image: f6AR0C6.png]
In your templates, find the myalerts_headericon template (It is in the MyAlerts template group).

In the template will be a section that reads:
{$lang->myalerts_alerts} ({$mybb->user['unreadAlerts']})

Change that as needed.
The {$lang->myalerts_alerts} is the word "Alerts" and the ({$mybb->user['unreadAlerts']}) is the number of alerts.

Changing that part to read something like
<img src="images/some_random_alert_icon.png" /> ({$mybb->user['unreadAlerts']})
would do it.
and how to delete the icon next line?
[Image: Y0vrEWU.png]
That is the &mdash; in the same template.
okey thanks for tutorials Smile