• Resolved pprince3145

    (@pprince3145)


    I’ve created a theme-my-login-custom.php file and added the following code to it, and placed it in the /wp-content/plugins folder but the Register link still appears on the login page

    <?php
    function remove_register_from_tml_forms( $action_name, $action ) {
    if ( 'register' == $action_name ) {
    $action->show_on_forms = false;
    }
    }
    add_action( 'tml_registered_action', 'remove_register_from_tml_forms', 10, 2 );
    ?>

    Can you help?

    • This topic was modified 2 months, 3 weeks ago by pprince3145.
Viewing 1 replies (of 1 total)
  • Plugin Author Jeff Farthing

    (@jfarthing84)

    While this should work, I would highly recommend disabling registration in WP Admin > Settings > General, if that’s what you’re after.

Viewing 1 replies (of 1 total)

You must be logged in to reply to this topic.