MyBB Community Forums

Full Version: {Help} My Alerts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
After using My Alerts Plugin My template (only My Alerts options) Changed into 
[Image: 92e00839f78740927a1f5e26d845b00e.png]

Help me out this Please Smile
Which theme are you using? It seems to be doing some non-standard stuff with the UCP menu.
I am using Flatty theme
Most probably your usercp.css is having problem.
What is your board url ?
Can you provide a temporary user login?
Yes, Flatty theme uses some massively customised templates. This problem arises often as MyAlerts is designed to work with the standard theme by default (which is a fair expectation). It is possible to customise it easily enough though. If you send me your URL and details for a temporary administrator acocunt I can take a look for you.
Hi,

For future reference for others, I fixed this by making the following changes.

Change the alerts_usercp_nav template to:

<tr>
    <td class="tcat tcat_menu tcat_collapse">
        <div class="expcolimage">
            <img src="{$theme['imgdir']}/collapse{$collapsedimg['usercpalerts']}.png" id="usercpalerts_img"
                 class="expander" alt="[-]" title="[-]"/>
        </div>
        <div>
			<span class="smalltext">
				<strong>{$lang->myalerts_usercp_nav}</strong>
			</span>
        </div>
    </td>
</tr>
<tbody style="{$collapsed['usercpalerts_e']}" id="usercpalerts_e">
<tr>
    <td class="trow1 smalltext">
        <a href="alerts.php" class="usercp_nav_item usercp_nav_myalerts">
			<i class="fa fa-bell-o fa_xtra"></i>
			{$lang->myalerts_usercp_nav_alerts}
		</a>
    </td>
</tr>
<tr>
    <td class="trow1 smalltext">
        <a href="alerts.php?action=settings" class="usercp_nav_item usercp_nav_options">
			<i class="fa fa-cog fa_xtra"></i>
			{$lang->myalerts_usercp_nav_settings}
		</a>
    </td>
</tr>
<tr>
    <td class="trow1 smalltext">
        <a href="alerts.php?action=delete_read&amp;my_post_key={$mybb->post_code}"
           onclick="return confirm('{$lang->myalerts_delete_read_confirm}')"
           class="usercp_nav_item usercp_nav_myalerts_delete_read">
			<i class="fa fa-trash-o fa_xtra orange"></i>
			{$lang->myalerts_usercp_nav_delete_read}
		</a>
    </td>
</tr>
<tr>
    <td class="trow1 smalltext">
        <a href="alerts.php?action=delete_all&amp;my_post_key={$mybb->post_code}"
           onclick="return confirm('{$lang->myalerts_delete_all_confirm}')"
           class="usercp_nav_item usercp_nav_myalerts_delete_all">
			<i class="fa fa-trash-o fa_xtra orange"></i>
			{$lang->myalerts_usercp_nav_delete_all}
		</a>
    </td>
</tr>
</tbody>

Change the alerts.css stylesheet to:

.newAlerts > a {
    color: red !important;
}

ul.panel_links a.myalerts {
    background-position: 0 -180px;
}

This results in the following style:

[Image: JPWuvHm.png]
Thanks Smile