{"id":22018392,"url":"https://github.com/biohzrdmx/wp-profiles","last_synced_at":"2026-04-30T07:43:31.467Z","repository":{"id":148606144,"uuid":"225932123","full_name":"biohzrdmx/wp-profiles","owner":"biohzrdmx","description":"Allow your users to sign-up to your site easily","archived":false,"fork":false,"pushed_at":"2020-08-27T21:16:26.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-11T15:39:46.298Z","etag":null,"topics":["plugin","user-accounts","wordpress"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/biohzrdmx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2019-12-04T18:31:52.000Z","updated_at":"2020-08-27T21:16:28.000Z","dependencies_parsed_at":"2023-06-04T21:30:41.235Z","dependency_job_id":null,"html_url":"https://github.com/biohzrdmx/wp-profiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/biohzrdmx/wp-profiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/biohzrdmx%2Fwp-profiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/biohzrdmx%2Fwp-profiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/biohzrdmx%2Fwp-profiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/biohzrdmx%2Fwp-profiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/biohzrdmx","download_url":"https://codeload.github.com/biohzrdmx/wp-profiles/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/biohzrdmx%2Fwp-profiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32458237,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"online","status_checked_at":"2026-04-30T02:00:05.929Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["plugin","user-accounts","wordpress"],"created_at":"2024-11-30T05:12:05.338Z","updated_at":"2026-04-30T07:43:31.452Z","avatar_url":"https://github.com/biohzrdmx.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wp-profiles\n\nAllow your users to sign-up to your site easily\n\n## Requirements\n\n - WordPress 5.x\n - PHP 5.3+\n\n## Installation\n\nDownload and unzip into your `wp-content/plugins` folder.\n\nMake sure the folder name is `wp-profiles`.\n\n_Note: The `samples` folder is not required, it just contains sample templates and code for handling the actions (see below)._\n\nIn your WordPress go to the **Dashboard** and then to **Plugins**, find the **Profiles** plugin and activate it.\n\n## Usage\n\n- Create your four templates or use the sample ones.\n- Create your four pages: Register, Sign-in, Recover and Profile. Assign the appropiate templates.\n- Go to the **Dashboard** and then to **Profiles**, select the corresponding pages.\n- In your `functions.php` file register the actions for sending the mail messages (for activation and recovering).\n- Profit!\n\n### Customizing templates\n\nYou may customize the four pages to your liking (or to match your HTML/CSS/JS framework), to do so just take the four included templates and modify them. Just make sure you don't change the PHP code that allows them to work.\n\n### Customizing mailings\n\nYou may also customize the mailings sent by the plugin.\n\nTo do so just **copy** the **contents** of the sample `functions.php` file into the one inside your theme folder. **Don't overwrite it or you will break your site** - Just append the contents of the sample one.\n\nThe sample functions use the `wp_mail` function, but you may use any mechanism to send the mail messages (for example PHPMailer).\n\nJust place your code inside both actions and use the contents of the `$params` argument to craft and send your messages. The `$params` variable contains:\n\n- `from` - `array` with the source address and name, derived from your WordPress site options. Takes the form `['no-reply@yoursite.com' =\u003e 'Your Site']`\n- `to` - `array` with the destination address and name. Takes the form `['john.doe@mailinator.com' =\u003e 'John Doe']`\n- `subject` - The subject of the message. Takes the form `Recover your account | Your Site` or `Activate your account | Your Site`\n- `link` - The activation/recovery link. Takes the form `http://yoursite.com/[register-slug]?[auth-parameter]=[auth-hash]`\n\nYou can override the default values if you need to.\n\n### Get permalinks\n\nThe plugin includes a function to retrieve the permalink to any of the related pages.\n\nTo use it call `Profiles::getPermalink($slug)` where `$slug` can be one of:\n\n- `register`\n- `login`\n- `profile`\n- `recover`\n\n### Translating the messages\n\nThe plugin includes a `.po` file that you may translate into another language to localize the UI and messages.\n\nIf you create a translation please send me a pull request so that I include it in the repo.\n\n## Licensing\n\nMIT licensed\n\nAuthor: biohzrdmx [\u003cgithub.com/biohzrdmx\u003e](https://github.com/biohzrdmx)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbiohzrdmx%2Fwp-profiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbiohzrdmx%2Fwp-profiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbiohzrdmx%2Fwp-profiles/lists"}