Better wp security and TML
-
Hi
I’ve installed better wp and it blocks the registration form through TML. It creates a unique key after the wp-login.php on both login and register.
I’ve tried adding the below in my function.php without luck. If I disable better wp it works great. Any solutions?function tml_action_url( $url, $action, $instance ) {
if ( ‘register’ == $action )
$url = ‘YOUR REGISTRATION URL HERE’;
return $url;
}
add_filter( ‘tml_action_url’, ‘tml_action_url’, 10, 3 );
The topic ‘Better wp security and TML’ is closed to new replies.