Log in

View Full Version : Administrative and Maintenance Tools - add "Edit Profile" button in the member action drop menu


fnrtop
05-12-2011, 10:00 PM
Hello everyone,

lately it have been really making me sick every time i wanted to edit a user name or his title or promote him ... etc

I started playing around with the codes and it worked so I figured to share it with you guys

1- open Styles & Templates> Search in Templates and look for
popupmenu memberaction

2- in the template "memberaction_dropdown"
after this code
<li class="left">
<img src="{vb:stylevar imgdir_siteicons}/profile.png" alt="" />
<a href="{vb:link member, {vb:raw memberinfo}}">
{vb:rawphrase view_profile}
</a>
</li>


add this code

<li class="right">
<img src="images/buttons/edit_40b.png" alt="{vb:rawphrase edit_user_profile}" />
<a href="moderator.php?{vb:raw session.sessionurl}do=useroptions&amp;userid={vb:raw memberinfo.userid}">
Edit Profile
</a>
</li>


if the image didnt work make sure to change it distenation to your style directory

I hope this was helpful and will make your job easier haha

:up:

Dr.osamA
05-15-2011, 07:38 AM
thank you bro

installed

MediaHound
05-28-2011, 01:35 PM
You might want to wrap it with
<vb:if condition="$show['modcplink']">
...
</vb:if>

Last_Zero
05-28-2011, 03:54 PM
You might want to wrap it with
<vb:if condition="$show['modcplink']">
...
</vb:if>


Thats Right So Only Mods See It

The Template Called (( memberaction_dropdown )) On My vBulletin

Divvy
08-10-2011, 10:56 PM
Suggestion:

change:
<img src="images/buttons/edit_40b.png" alt="{vb:rawphrase edit_user_profile}" />

to:
<img src="images/buttons/edit_40b.png" alt="{vb:rawphrase edit_user_profile}" />

to fix the image issue... you added a wrong tag inside the src, will not work like that :)

archet1337
08-11-2011, 10:16 AM
Great mod. Thanks a lot for sharing! :)

bp323
09-12-2011, 02:21 AM
excellent & very helpful piece! thank you