Author Topic: {comment_user_info}  (Read 5964 times)

0 Members and 1 Guest are viewing this topic.

Offline mentally

  • Newbie
  • *
  • Posts: 24
    • View Profile
{comment_user_info}
« on: August 16, 2005, 10:27:17 PM »
how do i get {comment_user_info} to show in the profile page?

Offline V@no

  • If you don't tell me what to do, I won't tell you where you should go :)
  • Global Moderator
  • 4images Guru
  • *****
  • Posts: 17.849
  • mmm PHP...
    • View Profile
    • 4images MODs Demo
Re: {comment_user_info}
« Reply #1 on: August 17, 2005, 01:56:29 AM »
which was supposed to do what?
Your first three "must do" before you ask a question:
Please do not PM me asking for help unless you've been specifically asked to do so. Such PMs will be deleted without answer. (forum rule #6)
Extension for Firefox/Thunderbird: Master Password+    Back/Forward History Tweaks (restartless)    Cookies Manager+    Fit Images (restartless for Thunderbird)

Offline mentally

  • Newbie
  • *
  • Posts: 24
    • View Profile
Re: {comment_user_info}
« Reply #2 on: August 17, 2005, 02:00:42 AM »
hopefully show the user status: Member or Administrator?

or am i wrong?  :roll:

Offline V@no

  • If you don't tell me what to do, I won't tell you where you should go :)
  • Global Moderator
  • 4images Guru
  • *****
  • Posts: 17.849
  • mmm PHP...
    • View Profile
    • 4images MODs Demo
Re: {comment_user_info}
« Reply #3 on: August 17, 2005, 02:35:04 AM »
oh, ok
in member.php find:
Code: [Select]
      "user_icq_button" => $user_icq_button,Insert below:
Code: [Select]
      "user_level" => ($user_row['user_level'] == ADMIN) ? $lang['userlevel_admin'] : $lang['userlevel_user'],Then in member_showprofile.html template use {user_level} tag
Your first three "must do" before you ask a question:
Please do not PM me asking for help unless you've been specifically asked to do so. Such PMs will be deleted without answer. (forum rule #6)
Extension for Firefox/Thunderbird: Master Password+    Back/Forward History Tweaks (restartless)    Cookies Manager+    Fit Images (restartless for Thunderbird)

Offline mentally

  • Newbie
  • *
  • Posts: 24
    • View Profile
Re: {comment_user_info}
« Reply #4 on: August 17, 2005, 05:23:23 AM »
works like a charm

thanks  :P