Presuming you have your custom registration form set up to its own URL, such as /custom-register-page/ or something like it, then you can use the following code to change the register URL on the default WP login page:
add_filter( 'register_url', 'update_register_url' );
function update_register_url( $url ) {
if( is_admin() ) {
return $url;
}
return "/custom-register-page/";
}
Add this code to your template’s functions.php file, if that makes sense, or create a plugin to use this code. Make sure to update the code to use your custom register page URL.
Related Posts:
- WP plugins for Product web catalog [closed]
- User Signup in Multisite – Need Plugin or Advice
- Plugin – Social media share buttons
- Inject HTML meta tag inside wordpress tag using add_shortcode
- Translation plugin to translate another plugins
- How can I list all installed plugins/themes/versions from CLI/API?
- Does deleting a Plugin via the WordPress admin ‘completely’ remove the code?
- How to create multiple users at once?
- Notice: Uninitialized string offset: 0 in social sharing mu-plugin
- How to deploy gutenberg on my own [closed]
- Shortcode to update user meta
- Adding Static Image to WooCommerce Content-Single-Product template
- How to protect WordPress from security scanner [closed]
- Remove timthumb.php from my custom theme
- how can I query all wordpress users of a blog
- Automate paragraphs in a post page to have a unique anchor link
- Error in pdf generating plugin using FPDF
- How to create WordPress custom end point with multiple parameters?
- Text change in Advanced Customs Fields [closed]
- After updating the WordPress getting a syntax error in the console
- How to redirect to same page after form submission
- How to add a new column with text fields to WooCommerce Cart List?
- How to use filter to disable adding a product to wishlist?
- Merge tags in multistep Gravity Form?
- Woocommerce: limit user to see only the products he created
- How to get a list of all the available plugins names
- How to use apply_filters?
- Plugin content is shown on every page
- Call a function for social sharing
- Custom meta box with jQuery.sortable custom post type list
- Add a file upload field
- Is there anyway to rewrite woocommerce-template.php?
- Passing value as hidden parameter to next page
- Apply html elements in php statement
- How to find the WordPress Nextgen galleries which are not used in WordPress posts?
- How to get authors who have added the post in the specific custom post type
- Get product categories and add them to a custom taxonomy
- Auto populate a user custom field from another user custom field
- How can I adjust my function so the page editor still loads in the backend?
- Why won’t wp_enqueue_script work within any plugin file?
- how long do restored versions take to go live?
- Help to Create a Simple Plugin to make a post
- how to find out which plugin disable custom field for post
- WordPress Theme footer remove after use Autoptimizer plugins
- How to add status information to a list of words in wordpress
- WordPress fresh installation did not update default plugin and themes to latest version
- how to change a static testimonials into dynamic
- Looping the data from WordPress database using foreach
- headless wordpress
- How can I capture error in admin files?
- add tags to wordpress post using REST API
- How to display latest viewed post by logged user?
- Issue calling my functions on Plugin activate in WordPress
- WPGlobus Multilingual – REST API
- Defining constant in a plugin to use in another plugin
- how to do Thematic like this website using wordpress?
- How to make a page both “private” and “password protected”
- How Can I display Specific User Pages?
- Can’t Add Recaptcha
- Any way to self-host plugins and update them like wp-hosted plugins does?
- Custom SportsPress list
- Custom content per post in widget
- Continous audio play in pages
- Why is the WordPress update_option not working in this code?
- How to restrict “too soon” downloads with a general rule?
- Redux framework somehow added to my site, can’t locate in plugins
- what is the best way to create a premium plugin while also protecting your code
- Display Powerpress media url
- Plugin Post 2 Posts: How to list most connected posts?
- How to prevent intermediate images from being created but keep the sizes available for selection in the media library?
- Get url of selected gallery images?
- Custom post type request switches to media request
- How to set the default options on an existing plugin in a WP MU new user install
- How to use categories in the URL with Advanced Custom Fields?
- Plugin Breaking WordPress Login
- Multiple thumbnails and one gallery
- Custom Post type plugin breaking the front page shows dashboard?
- multiple external urls in wordpress website
- Display static pages instead of category, in code
- Checking url from plugin [duplicate]
- How to add a filter conditionally based on page related Conditional Tags
- Additional scrollbar appears inside the browser on every page + lag scroll -Winner theme
- Call to a member function get_page_permastruct() on null
- Quiz plugin where we can import question from Excel file?
- Automatically put a menu on every post
- ERROR: Cookies are blocked due to unexpected output – no access to FTP
- i am create wordpress plugin that show error?
- How to do Conact form 7 name field validation? [closed]
- ‘Save settings’ (submit button) ISSET
- php include returns 1 as output with other outputs [closed]
- Custom GD Star Ratings Stars [closed]
- How do I transfer my plugin data?
- How to give different user access to different people?
- hide particular category post from front page only [closed]
- which plugin is this? [closed]
- Adding a script & php to functions.php
- Divi Template A Few Questions
- Trying to use wp_register_script/style and enqueu them from an array – getting an error [duplicate]
- Email Masking in widget
- FATAL ERROR: WP complains about redeclaration [closed]