掲示板

where to change the login url in theme

thumbnail
11年前 に Shivaji C によって更新されました。

where to change the login url in theme

Regular Member 投稿: 143 参加年月日: 12/10/18 最新の投稿
Hi, if i want to change the login url from http://localhost:8080/web/guest/home to http://localhost:8080/web/login, so for this where should i change the url path in my file ie in which file.
thumbnail
11年前 に Jignesh Vachhani によって更新されました。

RE: where to change the login url in theme

Liferay Master 投稿: 803 参加年月日: 08/03/10 最新の投稿
Shivaji C:
Hi, if i want to change the login url from http://localhost:8080/web/guest/home to http://localhost:8080/web/login, so for this where should i change the url path in my file ie in which file.


Shivaji,

If you see the init.vm file from D:\tomcat\liferay-portal-6.1.1-ce-ga2\tomcat-7.0.27\webapps\ROOT\html\themes\_unstyled\templates location,
and search $sign_in_url .
You will find below line which is responsible to generate login URL.
#set ($sign_in_url = $htmlUtil.escape($theme_display.getURLSignIn()))


While in your theme , you can see portal_normal.vm file where $sign_in_url variable is being used.
So if you have URL already available then you don't need to set $sign_in_url variable again.
You can simple replace your URL with href of below code.

#if (!$is_signed_in)
<a href="$sign_in_url" id="sign-in" rel="nofollow">$sign_in_text</a>
#end