Title: Question regarding universal login
Last modified: August 24, 2016

---

# Question regarding universal login

 *  Resolved [jbkeefer](https://wordpress.org/support/users/jbkeefer/)
 * (@jbkeefer)
 * [11 years ago](https://wordpress.org/support/topic/question-regarding-universal-login/)
 * First let me say thank you for a very useful plugin. I started using on a recommendation
   from paid membership pro (if I remember correctly) and have used it religiously
   on most of my wordpress projects. Thank you again!
 * I want to enable sites to either login with their credentials, but if they need
   to register, I want to have the “register” link redirect to another site. My 
   customer wants universal login on all their sites, and I have it set up so that
   if they register on “primary” site all sub sites get the user data. However, 
   if someone visits the sub site I need to redirect them to the primary and have
   them register there, preferably on a landing page that explains the universal
   login and benefits.
 * I have looked at some of the TML source and realized there is more under the 
   hood than I expected. I thought it would be wise to stop here and seek your opinion
   before I start hacking this apart.
 * I suspect in the login-form.php file the line:
 *     ```
       <?php $template->the_action_links( array( 'login' => false ) ); ?>
       ```
   
 * alludes to action links being the register or lost password code?
 * Two things that might be helpful:
 * I need to track down the part of the code that when registered is clicked, which
   page is loaded. Would it work to have it point to “master” site registration 
   on another domain?
 * If these changes are made (hopefully a single php file) by placing that updated
   php file in the child theme, in your opinion it should work and be okay on future
   updates of the plugin?
 * Thank you for your feedback. I’ll keep poking around and see if I can find the
   reference to “register” page.
 * Jamie
 * [https://wordpress.org/plugins/theme-my-login/](https://wordpress.org/plugins/theme-my-login/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Thread Starter [jbkeefer](https://wordpress.org/support/users/jbkeefer/)
 * (@jbkeefer)
 * [11 years ago](https://wordpress.org/support/topic/question-regarding-universal-login/#post-6105028)
 * Would updating the class here on subb sites do the trick?
 *     ```
       public static function default_pages() {
       		return apply_filters( 'tml_default_pages', array(
       			'login'        => __( 'Log In'        , 'theme-my-login' ),
       			'logout'       => __( 'Log Out'       , 'theme-my-login' ),
       			'register'     => __( 'Register'      , 'theme-my-login' ),
       			'lostpassword' => __( 'Lost Password' , 'theme-my-login' ),
       			'resetpass'    => __( 'Reset Password', 'theme-my-login' )
       		) );
       	}
       ```
   
 * How about a url in place of register:
 *     ```
       'register'     => __( 'Register'      , 'Url of Subsite Registration page' ),
       ```
   
 * Thanks again
 * Jamie
 *  Plugin Author [Jeff Farthing](https://wordpress.org/support/users/jfarthing84/)
 * (@jfarthing84)
 * [11 years ago](https://wordpress.org/support/topic/question-regarding-universal-login/#post-6105044)
 * See [this](https://wordpress.org/support/topic/change-the-url-of-the-register-page?replies=5#post-6921853).

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Question regarding universal login’ is closed to new replies.

 * ![](https://ps.w.org/theme-my-login/assets/icon-256x256.png?rev=1891232)
 * [Theme My Login](https://wordpress.org/plugins/theme-my-login/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/theme-my-login/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/theme-my-login/)
 * [Active Topics](https://wordpress.org/support/plugin/theme-my-login/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/theme-my-login/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/theme-my-login/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [Jeff Farthing](https://wordpress.org/support/users/jfarthing84/)
 * Last activity: [11 years ago](https://wordpress.org/support/topic/question-regarding-universal-login/#post-6105044)
 * Status: resolved