From db54e37d167d1a526cb69488b79c0033121f49e2 Mon Sep 17 00:00:00 2001 From: Yasir Arafat <148990700+Arafat-plugins@users.noreply.github.com> Date: Mon, 2 Feb 2026 10:02:10 +0600 Subject: [PATCH 1/2] vimeo video url not support issue fixed --- includes/helper-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/helper-functions.php b/includes/helper-functions.php index f30f6a437e..c70bb08cfd 100644 --- a/includes/helper-functions.php +++ b/includes/helper-functions.php @@ -4362,7 +4362,7 @@ function directorist_check_password_reset_pin_code( $user, $pin_code ) { } function directorist_validate_youtube_vimeo_url( $url ) { - if ( preg_match( '/^(https?:\/\/)?(www\.)?vimeo\.com\/(\d+)/i', $url ) ) { + if ( preg_match( '/^(https?:\/\/)?(www\.)?vimeo\.com\/(\d+)(\/\d+)?$/i', $url ) ) { return true; } From 54e0c1cb877158eb5492345ef01ae9df1850aa75 Mon Sep 17 00:00:00 2001 From: Yasir Arafat <148990700+Arafat-plugins@users.noreply.github.com> Date: Mon, 9 Feb 2026 14:40:54 +0600 Subject: [PATCH 2/2] password reset email translation issue fix --- templates/account/login-registration-form.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/account/login-registration-form.php b/templates/account/login-registration-form.php index cbdcc7b0b1..a463a41e57 100644 --- a/templates/account/login-registration-form.php +++ b/templates/account/login-registration-form.php @@ -199,7 +199,8 @@ Site name: %1$s User name: %2$s To reset your password, please click on the Reset Password.
- If this was a mistake, just ignore this email and nothing will happen.' + If this was a mistake, just ignore this email and nothing will happen.' + ,'directorist' ), $site_name, $user->user_login,