Author Topic: Log In Info  (Read 7895 times)

0 Members and 1 Guest are viewing this topic.

Offline Candace

  • Newbie
  • *
  • Posts: 38
    • View Profile
Log In Info
« on: April 22, 2005, 07:09:15 AM »
Is there a way I can remove the log in info boxes but still be able to get in my control panel to add images etc, I have seen several galleries like that and would like to know how to do that

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: Log In Info
« Reply #1 on: April 22, 2005, 07:29:29 AM »
yes, u can, edit user_loginform.html template
then u can login through yoursite/admin dir
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 Candace

  • Newbie
  • *
  • Posts: 38
    • View Profile
Re: Log In Info
« Reply #2 on: April 22, 2005, 07:40:35 AM »
yes, u can, edit user_loginform.html template
then u can login through yoursite/admin dir

what part of the user_loginform do i edit

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: Log In Info
« Reply #3 on: April 22, 2005, 07:47:20 AM »
I hope u dont mean that u dont know basic HTML...if so, then perhaps u should look into templates forum, there are some templates without login form...
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 Candace

  • Newbie
  • *
  • Posts: 38
    • View Profile
Re: Log In Info
« Reply #4 on: April 22, 2005, 07:51:15 AM »
I hope u dont mean that u dont know basic HTML...if so, then perhaps u should look into templates forum, there are some templates without login form...

I got it, there is some text above where the login in form used to be that says registered users, how can i remove that

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: Log In Info
« Reply #5 on: April 22, 2005, 07:57:41 AM »
for that you will need either edit every "main" template or replace in includes/page_header.php:
Code: [Select]
  "lang_registered_user" => $lang['registered_user'],with:
Code: [Select]
  "lang_registered_user" => "",(first variant is slower, but better)
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 Candace

  • Newbie
  • *
  • Posts: 38
    • View Profile
Re: Log In Info
« Reply #6 on: April 22, 2005, 08:06:09 AM »
for that you will need either edit every "main" template or replace in includes/page_header.php:
Code: [Select]
  "lang_registered_user" => $lang['registered_user'],with:
Code: [Select]
  "lang_registered_user" => "",(first variant is slower, but better)

one last thing, is there a way to change the name of what it says instead of saying registered users could u get it to say something else

Offline RoadDogg

  • Sr. Member
  • ****
  • Posts: 488
    • View Profile
    • Düsipixel
Re: Log In Info
« Reply #7 on: April 22, 2005, 09:27:12 AM »
take a look on this thread an the last post
http://www.4homepages.de/forum/index.php?topic=7142.0
I replaced loginform with a navigation menu an created a ne templates to get by an other way to loginform
For support requests please don´t forget link to your Gallery/to phpinfo.php
Code: [Select]
<?
phpinfo()
?>
safe_mode must turned OFF
Please check Error Messages

Offline Candace

  • Newbie
  • *
  • Posts: 38
    • View Profile
Re: Log In Info
« Reply #8 on: April 22, 2005, 10:40:40 AM »
take a look on this thread an the last post
http://www.4homepages.de/forum/index.php?topic=7142.0
I replaced loginform with a navigation menu an created a ne templates to get by an other way to loginform


thanks, quick question how did u change that text from registered users to navigation

Offline RoadDogg

  • Sr. Member
  • ****
  • Posts: 488
    • View Profile
    • Düsipixel
Re: Log In Info
« Reply #9 on: April 22, 2005, 01:11:18 PM »
Search in lang/YOURLANGUAGE/main.php

Code: [Select]
$lang['registered_user'] = "Navigation";
For support requests please don´t forget link to your Gallery/to phpinfo.php
Code: [Select]
<?
phpinfo()
?>
safe_mode must turned OFF
Please check Error Messages