Disable WP Registration Page
Disable WP Registration Page
Description
This plugin disables default WP registration page by redirecting users who access the registration page URL to the default WP login page. If somehow you still want to accept user registration but want to disable default WP registration page to prevent bot, SPAM registration or something like that, this plugin is for you. No settings needed. Install, activate, done.
Installation
Automatic Installation
- Log in to the WP admin dashboard.
- Go to “Plugins > Add Plugin”.
- Enter “Disable WP Registration Page” to the search box and press enter.
- Install and activate the plugin.
Manual Installation (via WordPress Admin Dashboard)
- Download the plugin zip file.
- Log in to the WP admin dashboard.
- Go to the “Plugins > Add Plugin”.
- Click the “Upload Plugin” button, and an upload box will appear.
- Click the “Choose File” button and select the plugin zip file.
- Click the “Install Now” button and wait until the plugin has been fully installed.
- Activate the plugin.
Manual Installation (via FTP/SFTP)
- Download the plugin and extract the plugin zip file.
- Connect to your website server via FTP/SFTP using an FTP/SFTP client such as FileZilla.
- Upload “disable-wp-registration-page” folder to “/wp-content/plugins/” directory of your website.
- Go to “Plugins > Installed Plugins”.
- Find “Disable WP Registration Page” and click “activate”.
Faq
You can add the following PHP code snippets to your active theme’s functions.php or a snippet plugin:
`php
add_filter(
‘dwprp_registration_link’,
function() {
return ‘Your custom registration link text’
}
);
`
You can add the following PHP code snippets to your active theme’s functions.php or a snippet plugin:
`php
add_filter(
‘dwprp_registration_redirect_url’,
function() {
return site_url( ‘/your-custom-registration-page’ );
}
);
`
You can add the following CSS to your active theme’s style.css or a snippet plugin:
`css
.dwprp-registration-link {
display: none;
}
`
Reviews
Almost perfect, great for stopping bots
By Pedro Magnifico on September 4, 2018
Completely eliminated all bot registrations!
By MagicTH on August 27, 2017
Great and simple plugin!
By compu on February 12, 2017
Blocks fake SPAM user registration
By dseverude on February 8, 2017
Simple and does want I want.
By AlgerieDeals on September 3, 2016
I have a custom registration form and don't want users bypass it. This plugin does force users to go through the custom form.
Thanks.
Great plugin
By OxWeb on September 3, 2016
I was having trouble with bots registering through the default WP registration page. I disabled the link in wp-admin but they were doing it directly from the registration page. I am handling user registration via custom login page so I did not need a default registration. I googled the options, downloaded "Disabled WPRegistration Page" plugin and it works like a charm.
Changelog
1.0.3
- Added filters:
dwprp_registration_link,dwprp_registration_redirect_url.
1.0.2
- Update plugin tested up to tag
1.0.1
- Bug fix: wp registration page didn’t redirect on some servers.
1.0
- Initial release.