• 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 3 weeks, 4 days ago by pprince3145.

You must be logged in to reply to this topic.