Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Member List

Asked Modified Viewed 3,046 times
W
wajone
W
wajone 10
  • Newbie, joined since
  • Contributed 3 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
asked
Newbie

I apologize if this is the wrong forum.....

Is there a way to either delete out of the box with the user name, the "Members List" all together or have it for admins only? I'm running the latest version of the software. Thank you.
0 replies

3 posts

S
Super
S
Super 10
~Samchammy

Find some games below!!!
Gamedna.tk
  • Senior Member, joined since
  • Contributed 248 posts on the community forums.
  • Started 32 threads in the forums
answered
Senior Member

Open up Infusions/User_Info_Panel/User_Info_Panel.php.

1. Deleting Members List

Find -->

echo THEME_BULLET." <a href='".BASEDIR."edit_profile.php' class='side'>".$locale['global_120']."</a><br />\n";
echo THEME_BULLET." <a href='".BASEDIR."messages.php' class='side'>".$locale['global_121']."</a><br />\n";
echo THEME_BULLET." <a href='".BASEDIR."members.php' class='side'>".$locale['global_122']."</a><br />\n";


Replace it with -->
echo THEME_BULLET." <a href='".BASEDIR."edit_profile.php' class='side'>".$locale['global_120']."</a><br />\n";
echo THEME_BULLET." <a href='".BASEDIR."messages.php' class='side'>".$locale['global_121']."</a><br />\n";



2. Making it for Admins Only

Find -->
echo THEME_BULLET." <a href='".BASEDIR."edit_profile.php' class='side'>".$locale['global_120']."</a><br />\n";
echo THEME_BULLET." <a href='".BASEDIR."messages.php' class='side'>".$locale['global_121']."</a><br />\n";
echo THEME_BULLET." <a href='".BASEDIR."members.php' class='side'>".$locale['global_122']."</a><br />\n";


Replace it with -->
echo THEME_BULLET." <a href='".BASEDIR."edit_profile.php' class='side'>".$locale['global_120']."</a><br />\n";
echo THEME_BULLET." <a href='".BASEDIR."messages.php' class='side'>".$locale['global_121']."</a><br />\n";
if (iADMIN) {
echo THEME_BULLET." <a href='".BASEDIR."members.php' class='side'>".$locale['global_122']."</a><br />\n";
}


:D Hope this helps!
0 replies
W
wajone
W
wajone 10
  • Newbie, joined since
  • Contributed 3 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Newbie

Quote

Super wrote:

:D Hope this helps!



It does. I'm rather new to phpfusion. coming over from php-nuke. Seems php-nuke's development has all but stopped. So I'm having to learn my way around this thing a little bit.

Thanks for the help!
0 replies
S
Super
S
Super 10
~Samchammy

Find some games below!!!
Gamedna.tk
  • Senior Member, joined since
  • Contributed 248 posts on the community forums.
  • Started 32 threads in the forums
answered
Senior Member

No problem... PHPFusion is not a hard "language" to learn. If you learn coding fast then it shouldn't take you up to a month (max) :) !!! Glad I could help!
0 replies

Category Forum

User Administration - 8

Labels

None yet

Statistics

  • Views 0 views
  • Posts 3 posts
  • Votes 0 votes
  • Topic users 2 members

2 participants

S
S
Super 10
~Samchammy

Find some games below!!!
Gamedna.tk
  • Senior Member, joined since
  • Contributed 248 posts on the community forums.
  • Started 32 threads in the forums
W
W
wajone 10
  • Newbie, joined since
  • Contributed 3 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet