ATutor

Learning Management Tools







Pages:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15


Remove Register Tab from Login


  • 2006-08-13 20:55:08

    Remove Register Tab from Login

    I am making it so the only way people can register for my site is by a form I have made and then I will create them as a user myself. I have removed all of the register options but I can not seem to figure out how to remove the register tab from the login screen. What file do I have to alter and where to have this button removed. Here is a link to my site:

    http://www.thejedireligion.org/university/atutor/ATutor/login.php

    You will see the three tabs in the upper left hand corner and I would like to remove the register tab. I am using ATutor 1.5.3.1 with the theme GINAqua.

    Thank you in advance for any and all help and advice!!

    Adam

  • 2006-08-14 08:32:28

    Re: Remove Register Tab from Login

    include/lib/menu_pages.php

    about line 24, remove the reference to registration.php
    [php]


    $_pages[AT_NAV_PUBLIC] = array_merge(array('login.php', 'registration.php', 'browse.php'), (array) $_pages[AT_NAV_PUBLIC]);

    [/php]

  • 2006-08-14 11:13:41

    Re: Remove Register Tab from Login

    IGreat, thank you so much!!

    Adam