How to add/edit/remove the documents in Patient documents section(on the patient portal)
How to add a LBform in patient portals like demographics. (like a new page Medical Profile where the patient can fill height, weight, previous history, etc)
How to remove email address requirement from the patient login.
In the file openemr/portal/get_patient_info.php,
4. Currently all validation functions are done by mail [‘w’].But now we have to validate by using username using the id [‘u’].
Easiest way would be to patch out: /*if ($userData['email'] != $_POST['passaddon']) { $logit->portalLog('login attempt', '', ($_POST['uname'] . ':invalid email'), '', '0'); session_destroy(); header('Location: ' . $landingpage . '&w'); exit(); }*/
On L141-L146 in openemr/portal/get_patient_info.php But while I have the code in sight I think i’ll add a global to turn off. I’ll post the PR here when I do.