As previously announced via banners and our newsletters, support is no longer available through this platform.

For easier navigation, you can still click on "Submit a Ticket" here, choose the appropriate category, and you'll be redirected to the correct support channel for your plugin.

You can still access your previous tickets and browse public tickets, but please note that responding to tickets is no longer possible.

Paid customers: Please log in to your store account for support.

Pre-purchase questions: Use the support widget in the bottom-right corner of our websites:
https://wpamelia.com
https://wpdatatables.com
https://wpreportbuilder.com

Okay
  Public Ticket #2710742
Disable change password
Closed

Comments

  •  4
    Jeffrey started the conversation

    Hello, can you please teach me how I can disable the change password function or hiding it by using CSS?  Since all customers and providers use their profiles provided by another membership system to change passwords.

  • [deleted] replied

    Hello Jeffrey, 

    There isn't an option to disable these in Amelia with its current features, unfortunately. 

    You can try hiding it with adding custom CSS, you can try adding this custom CSS to the page where you have the Customer panel: 

    #am-cabinet > div.am-cabinet-dashboard > div.am-cabinet-content > span > div.am-cabinet-profile > div.am-cabinet-button > div > button.el-button.el-button--default {display:none !important;}
    

    And for the employee panel, you can try adding this CSS to the page: 

    #am-cabinet > div.am-cabinet-dashboard > div.am-cabinet-content > span > div.am-cabinet-profile > div.am-cabinet-button > div > button.el-button.el-button--default.am-ml-32 {display:none !important;}


    If you don't have the CSS option on the page, you can add them as format HTML by adding the <style></style> tags only, like this: 

    <style>
    #am-cabinet > div.am-cabinet-dashboard > div.am-cabinet-content > span > div.am-cabinet-profile > div.am-cabinet-button > div > button.el-button.el-button--default {display:none !important;}
    </style>