login link URL

hencu88

Joined: 2009-09-11
Posts: 2
Posted: Fri, 2009-09-11 18:25

Hi
Is there any simple way to change the url of link "login" in gallery2?
I have a bridge for Joomla, and what i want is when user click "login" link he is moved to my Joomla site.
I want the simplest solution - harcode the new url in <a href='' /> but i cant find where is the proper place to write it.

 
nivekiam
nivekiam's picture

Joined: 2002-12-10
Posts: 16503
Posted: Sat, 2009-09-12 17:54

You could try this:
http://gallery.menalto.com/node/86819

Then edit your theme to put a login link that you want there.
____________________________________________
Like Gallery? Like the support? Donate now!!! See G2 live here

 
hencu88

Joined: 2009-09-11
Posts: 2
Posted: Sun, 2009-09-13 19:03

Thanks for reply
But i found something like that:
In file /modules/core/templates/blocks/SystemLinks.tpl there are two foreach loops. The second one is responsible for Administration, Your Account, Login/ logout links.
So when you change

 {if isset($theme.systemLinks[$linkId])}
        <span class="{$class}">
    <a href="{g->url
       params=$theme.systemLinks[$linkId].params}">{$theme.systemLinks[$linkId].text}</a>
        </span>
  {$separator}
  {/if}

on the following

 {if isset($theme.systemLinks[$linkId])}
        {if $linkId != "core.Login"}
        <span class="{$class}">
    <a href="{g->url
       params=$theme.systemLinks[$linkId].params}">{$theme.systemLinks[$linkId].text}</a>
        </span>
        {else}
        <a href="http://my new funny link"> Login<a>
        {/if}
  {$separator}
  {/if}

then it should be ok (for me it works).
Of course there is a need to change a link, and refresh the theme.
Won't that way cause any problems?

 
nivekiam
nivekiam's picture

Joined: 2002-12-10
Posts: 16503
Posted: Sun, 2009-09-13 20:54

That shouldn't cause any problems. That's another way I was thinking about but most users get intimidated with making those sorts of changes.

And you keep your systemlinks :)
____________________________________________
Like Gallery? Like the support? Donate now!!! See G2 live here