The forum of the forums

Would you like to react to this message? Create an account in a few clicks or log in to continue.
The forum of the forums
4 posters

    Change Admin Panel Link name

    avatar
    Hydroxux
    Forumember


    Posts : 74
    Reputation : 5
    Language : i dont know

    Solved Change Admin Panel Link name

    Post by Hydroxux June 22nd 2012, 9:35 pm

    Is it possible to change the name of the Admin Panel?
    EX- Admin Panel gets changed to Deranged Panel


    Last edited by Hydroxux on June 24th 2012, 4:27 pm; edited 1 time in total
    Bingoo
    Bingoo
    Forumember


    Male Posts : 134
    Reputation : 7
    Language : English, Spanish

    Solved Re: Change Admin Panel Link name

    Post by Bingoo June 23rd 2012, 2:44 am

    Hi, Hello

    This is not possible as far as I know.
    Darren1
    Darren1
    Helper
    Helper


    Male Posts : 11853
    Reputation : 566
    Language : English

    Solved Re: Change Admin Panel Link name

    Post by Darren1 June 23rd 2012, 3:13 am

    Hi,

    In actual fact, it is more then possible, especially with the templates Wink

    Can you please confirm that you are infact on PHPBB2?

    If so!
    Lets rock and roll!

    Admin panel >> Display > Templates > Overall_footer_End, locate the code: <strong>{ADMIN_LINK}</strong> and remove it

    Now, replace it with this:
    <a href=/admin>YOUR NEW NAME</a>
    Save and publish it.

    You DO NOT need to add anything else to the url, your forum interprets as a link to your forum automatically Very Happy
    Bingoo
    Bingoo
    Forumember


    Male Posts : 134
    Reputation : 7
    Language : English, Spanish

    Solved Re: Change Admin Panel Link name

    Post by Bingoo June 23rd 2012, 3:27 am

    That's cool. I learn something new everyday Wink
    avatar
    Hydroxux
    Forumember


    Posts : 74
    Reputation : 5
    Language : i dont know

    Solved Re: Change Admin Panel Link name

    Post by Hydroxux June 23rd 2012, 11:49 pm

    Its phpBB2 but i cant find the <strong>{ADMIN_LINK}</strong>
    Darren1
    Darren1
    Helper
    Helper


    Male Posts : 11853
    Reputation : 566
    Language : English

    Solved Re: Change Admin Panel Link name

    Post by Darren1 June 23rd 2012, 11:59 pm

    Are you looking in the template overall_footer_end, make sure it's not the start template.
    avatar
    Hydroxux
    Forumember


    Posts : 74
    Reputation : 5
    Language : i dont know

    Solved Re: Change Admin Panel Link name

    Post by Hydroxux June 24th 2012, 12:06 am

    Yes.I searched it but still couldnt find it
    Darren1
    Darren1
    Helper
    Helper


    Male Posts : 11853
    Reputation : 566
    Language : English

    Solved Re: Change Admin Panel Link name

    Post by Darren1 June 24th 2012, 1:00 am

    What the fuck ?!?

    Can you copy/paste the template code here please?
    Can you check the start template, incase I got it wrong, but I'm sure it's in the end template.

    Do you currently have a link to the admin panel in the footer?
    If you don't, thats why there's no code for it, we can just throw one in Smile
    avatar
    Hydroxux
    Forumember


    Posts : 74
    Reputation : 5
    Language : i dont know

    Solved Re: Change Admin Panel Link name

    Post by Hydroxux June 24th 2012, 1:30 am

    Heres the template
    <!-- BEGIN html_validation -->
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <body>
    <table>
    <tr>
    <td>
    <div>
    <div>
    <div>
    <!-- END html_validation -->
    </div>
    </div>
    <!-- BEGIN switch_footer_links -->
    <div align="center">
    <div class="gen">
    <!-- BEGIN footer_link -->
    <!-- BEGIN switch_separator --> | <!-- END switch_separator -->
    <a name="bottom" class="copyright" href="{switch_footer_links.footer_link.U_FOOTER_LINK_HREF}" rel="{switch_footer_links.footer_link.FOOTER_LINK_REL}" target="{switch_footer_links.footer_link.FOOTER_LINK_TARGET}" title="{switch_footer_links.footer_link.L_FOOTER_LINK_TITLE}">{switch_footer_links.footer_link.L_FOOTER_LINK_TEXT}</a>
    <!-- END footer_link -->
    </div>
    </div>
    <!-- END switch_footer_links -->
    </div>
    {PROTECT_FOOTER}
    </td>
    </tr>
    </table>

    <!-- BEGIN switch_facebook_login -->
    <div id="fb-root"></div>
    <script type="text/javascript">
    //<![CDATA[
    FB.init({appId: '{switch_facebook_login.FACEBOOK_APP_ID}', status: true, cookie: true, xfbml: true, oauth: true});
    //]]>
    </script>
    <!-- END switch_facebook_login -->

    <!-- BEGIN switch_facebook_logout_TMP -->
    <script type="text/javascript">
    //<![CDATA[
    FB.Event.subscribe('auth.logout', function(response) {
    if ($('a#logout'))
    {
    var lien_redir = $('a#logout').attr('href');

    if ($('a#logout').attr('href') && $('a#logout').attr('href') != '')
    {
    document.location.href = 'http://{switch_facebook_logout.SERVER_NAME}/' + lien_redir;
    }
    }
    });

    $(document).ready( function() {
    $('a#logout').click( function() {
    FB.logout();
    } );
    });
    //]]>
    </script>
    <!-- END switch_facebook_logout_TMP -->

    <script type="text/javascript">
    //<![CDATA[
    fa_endpage();
    //]]>
    </script>

    </body>
    </html>
    avatar
    Hydroxux
    Forumember


    Posts : 74
    Reputation : 5
    Language : i dont know

    Solved Re: Change Admin Panel Link name

    Post by Hydroxux June 24th 2012, 1:59 am

    Yes it was.So i make a JS page and put that in and check in "Put in all pages"?
    avatar
    Hydroxux
    Forumember


    Posts : 74
    Reputation : 5
    Language : i dont know

    Solved Re: Change Admin Panel Link name

    Post by Hydroxux June 24th 2012, 2:23 am

    Do i chagne 'admin_link'?
    avatar
    Hydroxux
    Forumember


    Posts : 74
    Reputation : 5
    Language : i dont know

    Solved Re: Change Admin Panel Link name

    Post by Hydroxux June 24th 2012, 2:44 am

    Didnt work : /
    avatar
    Hydroxux
    Forumember


    Posts : 74
    Reputation : 5
    Language : i dont know

    Solved Re: Change Admin Panel Link name

    Post by Hydroxux June 24th 2012, 4:24 pm

    Thank you it worked Very Happy
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51498
    Reputation : 3523
    Language : English
    Location : United States

    Solved Re: Change Admin Panel Link name

    Post by SLGray June 24th 2012, 8:33 pm

    Topic Solved & Locked



    Change Admin Panel Link name Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.

      Current date/time is September 22nd 2024, 11:16 am