cancel
Showing results for 
Search instead for 
Did you mean: 

How to remove the latest blogs window from the login page, without Studio ?

jbpotokar_
Champ on-the-rise
Champ on-the-rise

I wish to prevent users from seeing this window.

Regards

1 ACCEPTED ANSWER

Not applicable

Hi,

I think it would be better to use the loginScreen extension point from org.nuxeo.ecm.platform.ui.web.auth.service.PluggableAuthenticationService instead of overwritting or editing login.jsp.

Have a look for instance at: https://github.com/nuxeo/nuxeo-services/blob/014a61093a0778d6fd02bcdd88037f9289ed328d/nuxeo-platform...

The important tag here is: newsIframeUrl

Cédric.

View answer in original post

8 REPLIES 8

JVent_
Confirmed Champ
Confirmed Champ

You have to put in your login.jsp this line:

boolean showNews = false;

The login.jsp is in the nuxeo-platform-webapp-X.X.jar in the bundles folder (/nxserver/bundles).

Inside the jar, the JSP is in this folder: web/nuxeo.war/login.jsp

I hope this help

Hi,

jbpotokar_
Champ on-the-rise
Champ on-the-rise

Hello,

Thx a lot, worked perfectly right !

JB

Hi,

Ok sorry

Not applicable

Hi,

I think it would be better to use the loginScreen extension point from org.nuxeo.ecm.platform.ui.web.auth.service.PluggableAuthenticationService instead of overwritting or editing login.jsp.

Have a look for instance at: https://github.com/nuxeo/nuxeo-services/blob/014a61093a0778d6fd02bcdd88037f9289ed328d/nuxeo-platform...

The important tag here is: newsIframeUrl

Cédric.

jbpotokar_
Champ on-the-rise
Champ on-the-rise

Hello,

In fact, I don't know how to use this link to test-loginscreenconfig-merge... What am I supposed to do with these lines ? Put them in a file somewhere ?

Thx for your answers.

JB

Not applicable

Hi jbpotokar, This kind of customization can be done with Nuxeo IDE, you should have a look at: http://doc.nuxeo.com/display/NXDOC56/Learning+to+customize+Nuxeo+EP. You'll find examples how to extend services using xml files.

Regards, Cédric.