Removing Form Links
-
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?
You must be logged in to reply to this topic.