Author Topic: show lightbox only for member and dont show "admin"  (Read 3498 times)

0 Members and 1 Guest are viewing this topic.

Offline redlock

  • Newbie
  • *
  • Posts: 11
    • View Profile
show lightbox only for member and dont show "admin"
« on: May 12, 2006, 01:19:23 PM »
hi, Hallo

1. since only members can use button lightbox, gladly for all not announced users these button would not indicate. is that possible?

da der button lightbox sowieso erst nutzbar ist wenn man angemeldet, würde ich dieses button bei nicht angemeldeten usern gern ausblenden. hat jemand ne idee?

2. we have all pictures uploadet with the user "admin. now stands with each Thumbnails “admin”.
is there a possibility “admin” is not indicated?

wir haben bei uns alle bilder als "admin" hochgeladen, gibt es eine möglichkeit das dann bei den thumbnails das nicht immer bei jeden bild angezeigt wird.

bsp./example  http://www.brasilien-entdecken.de/bilder/


thanks for help say redlock from germany

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: show lightbox only for member and dont show "admin"
« Reply #1 on: May 12, 2006, 02:45:44 PM »
1) You can replace lightbox_off.gif with a blank one.
2) in includes/functions.php find:
Code: [Select]
    "user_name" => $user_name,
Replace with:
Code: [Select]
    "user_name" => ($user_name == "admin") ? "" : $user_name,
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 redlock

  • Newbie
  • *
  • Posts: 11
    • View Profile
Re: show lightbox only for member and dont show "admin"
« Reply #2 on: May 13, 2006, 12:17:11 AM »
thanks