Home › Forums › Theme support › Problem with rReal Broker theme › Reply To: Problem with rReal Broker theme
Hi, there was a problem with the most recent WordPress core update, but we fixed it already. You can add this code to your functions.php file to solve the problem:
add_filter( 'login_url', 'my_login_page', 10, 2 );
function my_login_page( $login_url, $redirect ) {
return home_url( 'wp-login.php' );
}