Thanks for the quick reply.
I just checked, it is 1.3.1. Below is the problem function, and commenting like such solves problem temporarily to get the site up and running, but I haven’t looked into what consequences this might have.
Thanks!
Omar
public function site_url_remove_filter( $url ) {
/*$webarx_login = get_option( 'webarx_mv_wp_login' );
$user_loged_in = is_user_logged_in();
if ( ( isset( $user_loged_in ) && true === $user_loged_in ) && ( isset( $webarx_login ) && '1' === $webarx_login ) ) {
remove_filter('site_url', array( webarx()->hide_login, 'site_url' ) ) ;
}*/
return $url;
}