PROBLEM -: Need to disable “Change My Password” hyperlink on “My Profile” page
SOLUTION -:
To Remove the link on login page:
1. Backup the file: C:\breeze\appserv\apps\lang\en.xml
2. Open the file: C:\breeze\appserv\apps\lang\en.xml
3. Find the xml tag : <m id=”forgot-password”>Forgot your password?</m>
4. Change it to : <m id=”forgot-password”></m>
How to disable the Change My Password link on the My Profile page:
1. Stop the connect service and backup the feature.xml file on location C:\Breeze\appserv\apps\home\feature.xml
2. Open the file as above in a xml editor like editplus/notepad++.
3 Search the following block of code on feature.xml file
<feature id=”password” name=”password” title=”change-my-password” nav=”level-2″ propagate=”true”><template name=”home/password.xsl”/>
<param name=”account-id” path=”/results/common/account/@account-id” propagate=”true”/>
<action name=”password-rules”>
<param name=”acl-id” from=”account-id”/>
</action>
<param name=”user-id” path=”/results/common/user/@user-id”/>
<feature name=”save” title=”save” nav=”button-bottom” type=”submit”>
<param name=”user-id” path=”/results/common/user/@user-id”/>
<action name=”user-update-pwd”/>
<goto status=”ok” feature=”info”/>
</feature>
<link title=”cancel” feature=”info” nav=”button-bottom”/>
</feature>
4. Comment out the block of code as follows
<!–<feature id=”password” name=”password” title=”change-my-password” nav=”level-2″ propagate=”true”>
<template name=”home/password.xsl”/>
<param name=”account-id” path=”/results/common/account/@account-id” propagate=”true”/>
<action name=”password-rules”>
<param name=”acl-id” from=”account-id”/>
</action>
<param name=”user-id” path=”/results/common/user/@user-id”/>
<feature name=”save” title=”save” nav=”button-bottom” type=”submit”>
<param name=”user-id” path=”/results/common/user/@user-id”/>
<action name=”user-update-pwd”/>
<goto status=”ok” feature=”info”/>
</feature>
<link title=”cancel” feature=”info” nav=”button-bottom”/>
</feature> –>
5. Start the connect services.
