Mohamed Endisha
Forum Replies Created
-
Forum: Plugins
In reply to: [Secure Passkeys] No passwordless login possible@conmark This is how the login flow is designed to work.
- The login form is always displayed on the login page.
- Users who have enabled passkeys can log in using the “Login with Passkey” button, which does not require a username and password.
- The username/password fields remain visible because the system must still support standard login, and when passkey-enabled users can log in via the passkey option instead.
I’ve received similar requests to disable the username/password login and show only the passkey option. We will evaluate this behavior and, if applicable, consider adding it as an option in future releases.
Thank you for your feedback and for using the plugin.
Forum: Plugins
In reply to: [Secure 2FA] 2FA is skipped when WP Cerber plugin is enabledThank you for the detailed explanation. I really appreciate you taking the time to investigate it.
I haven’t used or tested the WP Cerber plugin myself, so I can’t say exactly why this conflict happens. It seems likely that something in the way WP Cerber handles authentication hooks is interfering with Secure 2FA.
If possible, I’d recommend reaching out to WP Cerber’s support as well.
Forum: Reviews
In reply to: [Secure Passkeys] Solid 5 even with minor issuesThank you for your review and support; I really appreciate it. Feedback like yours helps me make the plugin more powerful and reduce errors.
It would be even better if you could share this in the support forum for wider visibility.
I will carefully check your points and try to reproduce the issue to ensure we catch them and provide a solid solution in the next releases.
—–
You can try this snippet — it will detect your subdomain rather than just the main domain:
add_filter('secure_passkeys_web_authn_relying_party_id', function ($domain) {
$allowed_domains = [
'sub1.domain.com',
'sub2.domain.com',
];
$host = $_SERVER['HTTP_HOST'] ?? '';
if (in_array($host, $allowed_domains, true)) {
return $host;
}
return $domain;
});Thank you
Forum: Reviews
In reply to: [Secure Passkeys] Amazing Plugin!@looneytoons20 Thank you for your feedback.
Don’t worry I plan to support the plugin in the long term.
Forum: Plugins
In reply to: [Secure Passkeys] Can 2FA work alongside passkeysHello @westerdaled
As I mentioned above, Secure Passkey shouldn’t conflict with other plugins, though it’s still possible. So, has the issue been fixed, or are you looking for an alternative solution?
I also have a 2FA plugin that works well, but it only supports the default WordPress login form, not WooCommerce or other plugins.
You can check it out here: https://wordpress.org/plugins/secure-tfa
Forum: Plugins
In reply to: [Secure Passkeys] Shortcode not working for meShare with me the link or URL of your website, it might be the same issue mentioned above, so I will try to help you with Elementor.
Forum: Plugins
In reply to: [Secure Passkeys] Can 2FA work alongside passkeys@westerdaled Thanks a lot for the feedback.
Forum: Plugins
In reply to: [Secure Passkeys] Can 2FA work alongside passkeysSecure Passkeys should work alongside any 2FA plugin without issues, you can try whichever 2FA plugin.
For the second question, forcing login only with Passkeys (ignoring passwords) is not currently available, but it may be introduced in a future release.
Forum: Plugins
In reply to: [Secure Passkeys] Slight error in text on admin Overview pageRelease 1.2.2 has been published and is now available. This update includes a fix for this issue.
Forum: Plugins
In reply to: [Secure Passkeys] Enforce Passkeys@tcviper Yes, this feature is already on our timeline and will be available in one of the upcoming releases.
Thanks for the suggestion, it helps me do my best to improve the plugin.
Forum: Reviews
In reply to: [Secure Passkeys] Perfect – lightweight, simple and freeSecure Passkeys here to make things easy for you.
Thanks 🙂
Forum: Plugins
In reply to: [Secure Passkeys] Clarity on Setting’s Page and RolesHello @girkers
Does that mean that users roles that you select here won’t be able to log in at all or not able to log in using Passkeys?
The roles you select here will not be able to use Passkeys for login. The passkey registration form will also not appear on their profile or registration shortcode.
Users with these roles can still log in using other methods, but not with Passkeys.
On a side note, what happens if you have a plug in that allows you to create other roles, are these affected at all when using this plug in?
If you’re using a plugin that creates additional roles, those new roles are not affected unless you explicitly select them as excluded.
Hope that clears it up
Forum: Plugins
In reply to: [Secure Passkeys] Shortcode not working for meThe issue is not with the Passkeys plugin — it works fine.
The reason the button doesn’t do anything on your custom Elementor popup is that the popup content is only added to the page when the popup opens.
The plugin attaches its internal click listener to the button on page load (DOMContentLoaded). Since the button doesn’t exist yet inside the popup, the listener is never attached, so clicking the button does nothing.
You need to trigger the plugin initialization after the popup content is rendered. For Elementor, you can add the following JavaScript to the page (for example, in an HTML widget at the bottom of the page).
Replace
idwith your popup ID, in your case, it’s423.<script>
jQuery(document).ready(function($) {
jQuery(document).on("elementor/popup/show", function (event, id) {
if (id === 423) {
setTimeout(() => {
const domEvent = new Event("DOMContentLoaded", { bubbles: true, cancelable: true });
document.dispatchEvent(domEvent);
}, 100);
}
});
});
</script>I’ve tested it in your website console, and it works as expected. You can try it yourself as I did.
See the result here: https://ibb.co/pBtGH16xI hope it works well for you, and I look forward to your positive feedback.
Forum: Plugins
In reply to: [Secure Passkeys] Slight error in text on admin Overview pageThanks for pointing that out, I’ll fix the text in the next update.
Forum: Plugins
In reply to: [Secure Passkeys] You are not authorized to make this request.@bandy1967 Release 1.2.1 is now published and available. This update includes a fix for the issue.
If you find the plugin helpful, we’d greatly appreciate it if you could leave a positive review.