Mohamed Endisha
Forum Replies Created
-
Forum: Plugins
In reply to: [Secure Passkeys] Change heading and description in div id=”passkey_app”@picturebreeze You can change them in one of three ways:
Option 1: Filter (code): Add to your theme’s
functions.php:add_filter('secure_passkeys_get_frontend_register_localization', function ($i18n) {
$i18n['title'] = 'Your custom heading';
$i18n['description'] = 'Your custom description paragraph.';
return $i18n;
});Option 2:
gettextfilter: Add to your theme’sfunctions.php:add_filter('gettext', function ($translated, $text, $domain) { if ($domain !== 'secure-passkeys') { return $translated; } if ($text === 'Passwordless sign-in with passkeys') { return 'Your custom heading here'; } if (strpos($text, 'Passkeys offer a secure and user-friendly') === 0) { return 'Your custom description paragraph here.'; } return $translated; }, 10, 3);Option 3: Translation (no code):
Install Loco Translate plugin, open Secure Passkeys, and edit these two source strings:
- Passwordless sign-in with passkeys
- Passkeys offer a secure and user-friendly authentication method…
Forum: Plugins
In reply to: [Secure Passkeys] Cannot find or create passkey@richards1052 I didn’t quite get the issue, could you explain a bit more and share a screenshot/link?
Forum: Plugins
In reply to: [Secure Passkeys] How to integrate with profile builder forms?Login shortcode:
[secure_passkeys_login_form]that you can use to display the Secure Passkeys login form.If Profile Builder allows adding custom shortcodes inside its login forms/pages, you can simply inject that shortcode where needed.
Otherwise, you’ll need to contact the Profile Builder plugin developer/support team to ask how to properly embed third-party shortcodes into their login flow.
Forum: Plugins
In reply to: [Secure Passkeys] Cannot find or create passkeyThe plugin currently supports a passkey (passwordless login without a username). So, YubiKey is not supported.
Forum: Plugins
In reply to: [Secure Passkeys] Simple Membership IntegrationMost 2FA plugins use wp_login action, which can cause login issues. In Secure Passkeys release 1.2.4 we added a secure_passkeys_web_authn_validate_user_sign_in_enable_wp_login filter that is disabled by default. If you need it in your case, you can enable it as needed.
Thread: https://wordpress.org/support/topic/can-2fa-work-alongside-passkeys/
Thanks
Forum: Plugins
In reply to: [Secure Passkeys] Simple Membership IntegrationI’ll review this and consider adding support in a future release.
For now, you can use the solution suggested above using filters and hooks, as it resolves your issue and makes it compatible with your setup.
Thank you
Forum: Plugins
In reply to: [Secure Passkeys] Feature Request: ARMember Support@wendellh It looks like the ARMember plugin is currently closed on WordPress.org due to a guideline violation, so it’s not available for download at the moment.
Once it’s officially available again, we can review and consider adding support.
Thanks
Forum: Plugins
In reply to: [Secure Passkeys] Feature Request: wpForo Support@wendellh Secure Passkeys shortcodes should work with wpForo and can likely cover this use case. Have you had a chance to try them with your setup?
Thanks
Forum: Plugins
In reply to: [Secure Passkeys] redirect after login@chris1407 this is a valid request. I’ll consider adding a “Redirect URL” field after the login, in the plugin settings, in a future release to simplify this.
Thanks
Forum: Plugins
In reply to: [Secure Passkeys] Can 2FA work alongside passkeys@westerdaled Great to hear. You’re very welcome.
Forum: Plugins
In reply to: [Secure Passkeys] Can 2FA work alongside passkeysThe new release 1.2.4 has been published. Please check it, and it includes a fix for the 2FA plugins and should now work correctly for you.
Forum: Reviews
In reply to: [Secure Passkeys] Register ok / Login not ok@c00kiekiller Thank you for the feedback, to move forward and help reproduce and fix the issue in a future release, please open a support topic so we can troubleshoot and investigate the problem properly.
You’re welcome! I’m glad to hear the issue was identified and that the plugin is now working perfectly.
I have checked the issue, and it’s unrelated to the plugin, It appears Cloudflare is active on the site, and its WAF is erroneously blocking legitimate AJAX requests.
Please review your firewall settings or contact your hosting provider to adjust the rules.
Screenshot: https://ibb.co/GYZ6SmK
Hello,
The issue you are experiencing occurs because the “Login via Passkey” button attempts a Username-less Login (using a Discoverable Credential).
While you can see the passkey on your device, our system is optimized to create Standard Credentials. We chose this to ensure maximum compatibility across all devices, as many YubiKeys have limited storage space for the resident keys required for username-less login.
Currently, the Secure Passkeys interface does not yet support the “Username First” approach required for these Standard Credentials. We plan to include this functionality in the next release.
Thank you.