Mohamed Endisha
Forum Replies Created
-
Forum: Reviews
In reply to: [Secure Passkeys] Top pluginThank you so much for the great feedback.
Forum: Plugins
In reply to: [Secure Passkeys] redirect after loginClosing this ticket for now. Feel free to reopen or start a new one if needed.
Closing this ticket for now. Feel free to reopen or start a new one if needed.
At the moment, the plugin only supports the default WordPress login form. It does not currently support third-party or custom login forms, such as Ultimate Member.
You can use the
secure_tfa_enforce_tfa_excluded_usersfilter to exclude users based on a user meta field. To exclude users who registered via Ultimate Member:add_filter('secure_tfa_enforce_tfa_excluded_users', function($excludedUserIds) {
$current_user_id = get_current_user_id();
if ($current_user_id) {
$method = get_user_meta($current_user_id, 'registration_method', true);
if ($method === 'ultimate_member') {
$excludedUserIds[] = $current_user_id;
}
}
return $excludedUserIds;
});Forum: Plugins
In reply to: [Secure Passkeys] redirect after loginGreat to hear the plugin is working smoothly for you.
Yes, absolutely the Secure Passkeys includes many filters and hooks that allow you to customize or override its default behavior.
To redirect users to a custom page after they log in using a passkey, you can use the following
secure_passkeys_login_redirect_urlfilterExample – Redirect to a Specific URL:
add_filter('secure_passkeys_login_redirect_url', function ($redirect_to) {
// Redirect users to a custom URL after logging in with a passkey
return 'https://your-domain.com/your-custom-path';
});Example – Redirect Based on User Role:
add_filter('secure_passkeys_login_redirect_url', function ($redirect_to) {
$user = wp_get_current_user();
// Redirect administrators to the WP admin dashboard
if (in_array('administrator', $user->roles)) {
return admin_url();
}
// Redirect subscribers to a custom dashboard page
if (in_array('subscriber', $user->roles)) {
return home_url('/dashboard');
}
// Default fallback URL
return $redirect_to;
});Forum: Reviews
In reply to: [Secure Passkeys] A Game-Changer for WordPress Security and User Experience@ghwela Thanks a lot — really appreciate it
Forum: Reviews
In reply to: [Secure Passkeys] A Game-Changer for WordPress Security and User ExperienceThanks a lot, really appreciate it.
Forum: Reviews
In reply to: [Secure Passkeys] Essential Security Plugin – Simple, Powerful, and Reliable!Glad you found it helpful, thanks for the review.
Forum: Reviews
In reply to: [Secure Passkeys] Awesome!!!!Thanks @davidmanch , Glad to hear that.
This topic is closed due to inactivity and does not appear to be a plugin issue. You can reopen it anytime if you need further assistance.
Hello @z649885688
The country thumbnails are working fine on our end, as shown here https://prnt.sc/laLA-Mgb_YnJ
If you’re seeing them cut off or not displaying correctly, it may be related to your browser cache.
Please try clearing your browser cache or switching to a different browser to see if that resolves the issue.
Thank you for bringing this issue to our attention. This issue has been observed in rare cases and is related to how intl-tel-input handles input fields.
We’ve added it to the list of bugs to be fixed in the next release.
Thank you for your patience
Forum: Plugins
In reply to: [Asynchronous Emails] Lowest delay to send mails@mattce I hope the issue has been resolved.
The plugin is working correctly to save the phone number in E.164 format. You can verify the data in the
_postmetatable, where it should be stored as [+][country code][phone number].We will investigate this in the next release to see if there’s anything we can improve on our end.
Forum: Plugins
In reply to: [International Phone Number Format] Use without Woocommerce?This topic is being closed due to inactivity. If you still need help, please reopen it or open a new topic and reference this one if necessary.
Thank you for your understanding.