Change your UserCP Navbar with the New UserCP Dropdown Menu!

mastram

New Member
Version: 3.7.x

Using this product you will change your current UserCP navbar to the new UserCP Dropdown Menu. It will be automatically integrated, it will require no further changes. Just import this product and your usercp navbar will be reorganized with this new style. Let me know what do you think about this new product!


Download the attached product and import it using your AdminCp.
(AdminCp -> Plugin & Products -> Manage Products -> Import Product -> Browse New UserCP Dropdown Menu (product).xml and press Import)

Also, if you want to change the phrase that is showing under the new navbar, you can do that in yor AdminCp too.
(AdminCp -> Languages & Phrases -> Search in Phrases -> usercp_nav_welcomemessage -> (Phrase Variable Name Only) -> Search -> Edit)
 
Well I installed this into my forum, and I would have to say I love this mod. It adds a littke class to the forum. Thank you for having this on here, and please keep awesome mods like this coming to the forum.
 
Got it...

If anyone needs it, to get it to work with Project Tools, comment out the pt_usercp_navbit template, like this:

Code:
<!--
<tr>
	<td class="thead">$vbphrase[projects]</td>
</tr>
<tr>
	<td class="$navclass[ptsubscriptions]" nowrap="nowrap"><a class="smallfont" href="projectpost.php?$session[sessionurl]do=managesubscriptions">$vbphrase[list_subscriptions]</a></td>
</tr>
<tr>
	<td class="alt2" nowrap="nowrap"><a class="smallfont" href="project.php$session[sessionurl_q]">$vbphrase[projects]</a></td>
</tr>
-->

Then in usercp_dropdown_shell:

Find:
Code:
	<if condition="$show['moderateditems']">
<td id="moderateditems" class="tcat">
    $vbphrase[moderated_items]
    <script type="text/javascript">
        vbmenu_register("moderateditems");
    </script>
</td>
</if>

Paste the following under that:
Code:
<td id="projecttools" class="tcat">
    $vbphrase[projects]
    <script type="text/javascript">
        vbmenu_register("projecttools");
    </script>
</td>

Find:
Code:
		<if condition="$show['moderatedpics']">
<tr>
            <td class="vbmenu_option" title="nohilite">
<a class="smallfont" href="moderation.php?$session[sessionurl]do=viewpics">$vbphrase[album_pictures]</a>
</td>
</tr>

</if>

</table>
</div>
</if>

Paste the following after that:
Code:
<div class="vbmenu_popup" id="projecttools_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
        <tr>
            <td class="thead">$vbphrase[projects]</td>
        </tr>
        <tr>
            <td class="vbmenu_option" title="nohilite">
<a class="smallfont" href="projectpost.php?$session[sessionurl]do=managesubscriptions">$vbphrase[list_subscriptions]</a>
</td>
</tr>
<tr>
            <td class="vbmenu_option" title="nohilite">
<a class="smallfont" href="project.php$session[sessionurl_q]">$vbphrase[projects]</a>
</td>
</tr>
</table>
</div>
 
Back
Top