@Amigamerlin: - Category structure that can be compressed and expanded.Provide more information. Which category structure? In admin section the full tree is visible. Do you need a custom module for the frontend area?UNKNOWN
- Notification to Email of user detail.It is not wise to send access details in plain text via email. What we did is to add the feature to send email to users with custom text. You can select multiple users and send emails at once to all selected. This was a request by sawaedy and fulfils your request too. See attached screenshot. DONE.
I forgot to mention that sending username/password via email to users cannot be done. Elxis stores users' passwords in database encrypted with a special function that does not allow decryption (for maximum security). There is no way to get user's password even if you hack the database. When you login in Elxis CMS Elxis encrypts the password you provide and compares it with the saved encrypted value. If these 2 match then it grants you access. You need a super computer performing a brute force attack to be able to crack the shalted sha1 encrypted password... So, the feature you requested cannot be implemented. You can use the new added "contact" functionality to mail the user his username/password (if you know them, or just created the user).Here is an encrypted user password (very simple one). You can try to crack it if you like: 09b2550704363dd0ba689ee4d49a3e88279cc88a
@headache: Added in Elxis 4.3 the option to send automatically via email the username/password to user. Important notes:- This option added in add/edit user form in administration area. When you add a new user, or edit an existing one, you can click to mail access details to the user.- Works on non-administrator accounts only (for security).- Works on new user accounts or on existing user accounts if you provide the user password.- The user must not be blocked.If you wish translate the following into Italian (or any other language).$_lang['SEND_ACCDET'] = 'Send access details';$_lang['SEND_ACCDET_DESC'] = 'Send Username and Password to user. Works only on non-administrator accounts and on new user accounts or if you provide the password.';$_lang['YCAN_LOGIN_DETAILS'] = 'You can login at %s by using the following access details.'; //translators help: ... login at {SITENAME} by ...$_lang['ACCESS_DETAILS_SITE'] = 'Access details at %s'; //translators help: ... at {SITENAME}$_lang['ACCDET_SENT_USER'] = 'Access details sent to user.';
If you wish translate the following into Italian (or any other language).$_lang['SEND_ACCDET'] = 'Send access details';$_lang['SEND_ACCDET_DESC'] = 'Send Username and Password to user. Works only on non-administrator accounts and on new user accounts or if you provide the password.';$_lang['YCAN_LOGIN_DETAILS'] = 'You can login at %s by using the following access details.'; //translators help: ... login at {SITENAME} by ...$_lang['ACCESS_DETAILS_SITE'] = 'Access details at %s'; //translators help: ... at {SITENAME}$_lang['ACCDET_SENT_USER'] = 'Access details sent to user.';