{"id":47351867,"url":"https://github.com/builtmighty/builtmighty-password-reset","last_synced_at":"2026-03-18T00:25:15.952Z","repository":{"id":230995611,"uuid":"777451098","full_name":"builtmighty/builtmighty-password-reset","owner":"builtmighty","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-26T01:14:54.000Z","size":162,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-26T02:24:33.853Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/builtmighty.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-25T21:53:27.000Z","updated_at":"2025-03-26T01:13:10.000Z","dependencies_parsed_at":"2024-04-02T02:29:02.365Z","dependency_job_id":"75764ce0-2581-43e1-8139-a825c2aaec83","html_url":"https://github.com/builtmighty/builtmighty-password-reset","commit_stats":null,"previous_names":["builtmighty/builtmighty-password-reset"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/builtmighty/builtmighty-password-reset","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/builtmighty%2Fbuiltmighty-password-reset","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/builtmighty%2Fbuiltmighty-password-reset/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/builtmighty%2Fbuiltmighty-password-reset/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/builtmighty%2Fbuiltmighty-password-reset/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/builtmighty","download_url":"https://codeload.github.com/builtmighty/builtmighty-password-reset/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/builtmighty%2Fbuiltmighty-password-reset/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30637042,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-18T00:09:27.587Z","status":"ssl_error","status_checked_at":"2026-03-18T00:09:26.123Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-03-18T00:25:14.876Z","updated_at":"2026-03-18T00:25:15.945Z","avatar_url":"https://github.com/builtmighty.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\" style=\"font-size:42px !important;\"\u003e🔑 Built Mighty Password Reset\u003c/p\u003e\n\n## About\nOur password reset plugin gives site administrators better tools around requiring users to reset their passwords. It includes both a timed password reset and a bulk password reset. The timed reset requires users to update their password every x amount of days. The bulk reset, however, requires users of a certain user level to reset their password, via a link sent to their email, on login and does not allow them to login until they've done so.\n\n## Installation\nTo install, add the plugin like any other WordPress plugin. Then go to Settings \u003e Password Reset to configure.\n\n## Developers\nThe plugin comes with several actions and filters for you to modify specific pieces of the plugin.\n\n### Actions\nThese are the following actions that are available. All of these actions include the user ID.\n\n`builtpass_before_notice`\nAn action that runs before the password reset notice page content. Shown to bulk reset users.\n\n`builtpass_reset_notice`\nAn action that runs within the content of the password reset notice page. Shown to bulk reset users.\n\n`builtpass_after_notice`\nAn action that runs after the password reset notice page content. Shown to bulk reset users.\n\n`builtpass_before_external`\nAn action that runs before the external password reset form. Shown to bulk reset users.\n\n`builtpass_after_external`\nAn action that runs before the external password reset form. Shown to bulk reset users.\n\n`builtpass_before_internal`\nAn action that runs before the internal password reset form. Shown to timed reset users.\n\n`builtpass_after_internal`\nAn action that runs after the internal password reset form. Shown to timed reset users.\n\n`builtpass_before_expired`\nAn action that runs before the expired password request form. Shown to bulk reset users.\n\n`builtpass_after_expired`\nAn action that runs after the expired password request form. Shown to bulk reset users.\n\nExample:\n```\nadd_action( 'builtpass_before_notice', 'custom_builtpass_before_notice', 10, 1 );\nfunction custom_builtpass_before_notice( $user_id ) {\n\n    // Do something with the $user_id or output additional content.\n\n}\n```\n\n### Filters\nThese are the following filters that are available.\n\n#### Reset Times\nThis is an admin setting where you can remove or add reset times. Times are a multi-dimensional array with the key being numeric and the value being the label.\n```\nadd_filter( 'builtpass_reset_times', 'custom_builtpass_reset_times', 10, 1 );\nfunction custom_builtpass_reset_times( $times ) {\n\n    // Remove 60 day reset.\n    unset( $times['60'] );\n\n    // Add time.\n    $times['730'] = 'Every 2 Years'; \n\n    // Return.\n    return $times;\n\n}\n```\n\n### Bulk Reset + Timed Fields\nThis is an admin setting field where you can filter the available fields.\n\n```\nadd_filter( 'builtpass_bulk_fields', 'custom_builtpass_bulk_fields', 10, 1 );\nfunction custom_builtpass_bulk_fields( $fields ) {\n\n    // Filter the multi-dimensional array of $fields.\n\n}\n```\n\n### Mail Filters\nThere's one email sent out to users, which generates a one-time use link for resetting their password. There are filters available for each piece of the email.\n\n`builtpass_password_reset_email`\n\n```\nadd_filter( 'builtpass_password_reset_email', 'custom_builtpass_password_reset_email', 10, 2 );\nfunction custom_builtpass_password_reset_email( $email_address, $user_id ) {\n\n    // Filter the email address, with access to the user ID.\n\n}\n```\n\n`builtpass_password_reset_subject`\n\n```\nadd_filter( 'builtpass_password_reset_subject', 'custom_builtpass_password_reset_subject', 10, 2 );\nfunction custom_builtpass_password_reset_subject( $subject, $user_id ) {\n\n    // Filter the subject, with access to the user ID.\n\n}\n```\n\n`builtpass_password_reset_heading`\n\n```\nadd_filter( 'builtpass_password_reset_heading', 'custom_builtpass_password_reset_heading', 10, 2 );\nfunction custom_builtpass_password_reset_heading( $heading, $user_id ) {\n\n    // Filter the heading, with access to the user ID.\n\n}\n```\n\n`builtpass_password_reset_body`\n\n```\nadd_filter( 'builtpass_password_reset_body', 'custom_builtpass_password_reset_body', 10, 2 );\nfunction custom_builtpass_password_reset_body( $body, $user_id ) {\n\n    // Filter the body, with access to the user ID.\n\n}\n\n```\n## 1.3.0\n\n* Added Block UI for password reset form on submit.\n* Fixed Bug where Password would save wrong on password reset.\n\n## 1.3.0\n\n* Update Key creation and validation to use WP Form Reset Keys.\n* Update Forms to use WC Password Reset Form if template found.\n* Fixed bug where Sanitized characters would remain in output for notices.\n\n## 1.2.1\n\n* Validate condition check for password reset page in enqueue method\n\n## 1.2.0\n\n* Update the password reset exception to apply the same rule to passwords created by admins in the admin users panel \n\n```\n\n## 1.1.0\n\n* Add Exclusion Interval.\n   * If a user has reset their password within this interval, they will not be required to reset their password again. This is useful to avoid prompting users to reset their password too frequently.\n\n```\n\n## 1.0.0\n\n* Initial plugin creation.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbuiltmighty%2Fbuiltmighty-password-reset","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbuiltmighty%2Fbuiltmighty-password-reset","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbuiltmighty%2Fbuiltmighty-password-reset/lists"}