We have lots of customers clicking the generate button and then save, and getting frustrated when they are trying to log back in because they don't realize that it is generating a password.
Is there a way to disable that button or remove it?
We had the same issue. We just deleted the button from the ascx file.
In case anyone needs to know, edit file: path_toSolidCPPortalDesktopModulesSolidCPUserControlsPasswordControl.ascx
Locate line: <asp:HyperLink ID="lnkGenerate" runat="server" NavigateUrl="#" meta:resourcekey="lnkGenerate" CssClass="btn btn-primary btn-sm" Visible="true">
Generate Random Password
</asp:HyperLink>
change visible to "false":
<asp:HyperLink ID="lnkGenerate" runat="server" NavigateUrl="#" meta:resourcekey="lnkGenerate" CssClass="btn btn-primary btn-sm" Visible="false">
Generate Random Password
</asp:HyperLink>
I tried deleting that entire line but got a SolidCP error