Title: Mohamed Endisha's Replies | WordPress.org

---

# Mohamed Endisha

  [  ](https://wordpress.org/support/users/endisha/)

 *   [Profile](https://wordpress.org/support/users/endisha/)
 *   [Topics Started](https://wordpress.org/support/users/endisha/topics/)
 *   [Replies Created](https://wordpress.org/support/users/endisha/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/endisha/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/endisha/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/endisha/engagements/)
 *   [Favorites](https://wordpress.org/support/users/endisha/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 93 total)

1 [2](https://wordpress.org/support/users/endisha/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/endisha/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/endisha/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/endisha/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/endisha/replies/page/7/?output_format=md)
[→](https://wordpress.org/support/users/endisha/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Secure Passkeys] Change heading and description in div id=”passkey_app”](https://wordpress.org/support/topic/change-heading-and-description-in-div-idpasskey_app/)
 *  Plugin Author [Mohamed Endisha](https://wordpress.org/support/users/endisha/)
 * (@endisha)
 * [1 day, 9 hours ago](https://wordpress.org/support/topic/change-heading-and-description-in-div-idpasskey_app/#post-18937399)
 * [@picturebreeze](https://wordpress.org/support/users/picturebreeze/) You can 
   change them in one of three ways:
 * **Option 1: Filter (code):** Add to your theme’s `functions.php`:
 *     ```wp-block-code
       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:  `gettext` filter: Add to your theme’s `functions.php`:
 *     ```wp-block-code
       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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Secure Passkeys] Cannot find or create passkey](https://wordpress.org/support/topic/cannot-find-or-create-passkey/)
 *  Plugin Author [Mohamed Endisha](https://wordpress.org/support/users/endisha/)
 * (@endisha)
 * [1 week, 6 days ago](https://wordpress.org/support/topic/cannot-find-or-create-passkey/#post-18925494)
 * [@richards1052](https://wordpress.org/support/users/richards1052/) I didn’t quite
   get the issue, could you explain a bit more and share a screenshot/link?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Secure Passkeys] How to integrate with profile builder forms?](https://wordpress.org/support/topic/how-to-integrate-with-profile-builder-forms/)
 *  Plugin Author [Mohamed Endisha](https://wordpress.org/support/users/endisha/)
 * (@endisha)
 * [1 week, 6 days ago](https://wordpress.org/support/topic/how-to-integrate-with-profile-builder-forms/#post-18925489)
 * [@bryanhiggs](https://wordpress.org/support/users/bryanhiggs/)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Secure Passkeys] Cannot find or create passkey](https://wordpress.org/support/topic/cannot-find-or-create-passkey/)
 *  Plugin Author [Mohamed Endisha](https://wordpress.org/support/users/endisha/)
 * (@endisha)
 * [3 weeks, 3 days ago](https://wordpress.org/support/topic/cannot-find-or-create-passkey/#post-18915090)
 * [@richards1052](https://wordpress.org/support/users/richards1052/)
 * The plugin currently supports a passkey (passwordless login without a username).
   So, YubiKey is not supported.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Secure Passkeys] Simple Membership Integration](https://wordpress.org/support/topic/simple-membership-integration-3/)
 *  Plugin Author [Mohamed Endisha](https://wordpress.org/support/users/endisha/)
 * (@endisha)
 * [1 month, 2 weeks ago](https://wordpress.org/support/topic/simple-membership-integration-3/#post-18892345)
 * [@mengelsen](https://wordpress.org/support/users/mengelsen/)
 * Most 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/](https://wordpress.org/support/topic/can-2fa-work-alongside-passkeys/)
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Secure Passkeys] Simple Membership Integration](https://wordpress.org/support/topic/simple-membership-integration-3/)
 *  Plugin Author [Mohamed Endisha](https://wordpress.org/support/users/endisha/)
 * (@endisha)
 * [1 month, 3 weeks ago](https://wordpress.org/support/topic/simple-membership-integration-3/#post-18890393)
 * [@mengelsen](https://wordpress.org/support/users/mengelsen/) [@amanandhishoe](https://wordpress.org/support/users/amanandhishoe/)
 * I’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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Secure Passkeys] Feature Request: ARMember Support](https://wordpress.org/support/topic/feature-request-armember-support/)
 *  Plugin Author [Mohamed Endisha](https://wordpress.org/support/users/endisha/)
 * (@endisha)
 * [1 month, 4 weeks ago](https://wordpress.org/support/topic/feature-request-armember-support/#post-18882854)
 * [@wendellh](https://wordpress.org/support/users/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Secure Passkeys] Feature Request: wpForo Support](https://wordpress.org/support/topic/feature-request-wpforo-support/)
 *  Plugin Author [Mohamed Endisha](https://wordpress.org/support/users/endisha/)
 * (@endisha)
 * [1 month, 4 weeks ago](https://wordpress.org/support/topic/feature-request-wpforo-support/#post-18882849)
 * [@wendellh](https://wordpress.org/support/users/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Secure Passkeys] redirect after login](https://wordpress.org/support/topic/redirect-after-login-92/)
 *  Plugin Author [Mohamed Endisha](https://wordpress.org/support/users/endisha/)
 * (@endisha)
 * [1 month, 4 weeks ago](https://wordpress.org/support/topic/redirect-after-login-92/#post-18882845)
 * [@chris1407](https://wordpress.org/support/users/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Secure Passkeys] Can 2FA work alongside passkeys](https://wordpress.org/support/topic/can-2fa-work-alongside-passkeys/)
 *  Plugin Author [Mohamed Endisha](https://wordpress.org/support/users/endisha/)
 * (@endisha)
 * [4 months, 1 week ago](https://wordpress.org/support/topic/can-2fa-work-alongside-passkeys/#post-18805801)
 * [@westerdaled](https://wordpress.org/support/users/westerdaled/) Great to hear.
   You’re very welcome.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Secure Passkeys] Can 2FA work alongside passkeys](https://wordpress.org/support/topic/can-2fa-work-alongside-passkeys/)
 *  Plugin Author [Mohamed Endisha](https://wordpress.org/support/users/endisha/)
 * (@endisha)
 * [4 months, 2 weeks ago](https://wordpress.org/support/topic/can-2fa-work-alongside-passkeys/#post-18804522)
 * [@westerdaled](https://wordpress.org/support/users/westerdaled/) [@pjv](https://wordpress.org/support/users/pjv/)
 * The 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](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Secure Passkeys] Register ok / Login not ok](https://wordpress.org/support/topic/register-ok-login-not-ok/)
 *  Plugin Author [Mohamed Endisha](https://wordpress.org/support/users/endisha/)
 * (@endisha)
 * [4 months, 2 weeks ago](https://wordpress.org/support/topic/register-ok-login-not-ok/#post-18799066)
 * [@c00kiekiller](https://wordpress.org/support/users/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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Secure Passkeys] Passkey authentication failed. Please try again if you want to proceed.](https://wordpress.org/support/topic/passkey-authentication-failed-please-try-again-if-you-want-to-proceed/)
 *  Plugin Author [Mohamed Endisha](https://wordpress.org/support/users/endisha/)
 * (@endisha)
 * [6 months ago](https://wordpress.org/support/topic/passkey-authentication-failed-please-try-again-if-you-want-to-proceed/#post-18757012)
 * [@iamsaugata](https://wordpress.org/support/users/iamsaugata/)
 * You’re welcome! I’m glad to hear the issue was identified and that the plugin
   is now working perfectly.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Secure Passkeys] Passkey authentication failed. Please try again if you want to proceed.](https://wordpress.org/support/topic/passkey-authentication-failed-please-try-again-if-you-want-to-proceed/)
 *  Plugin Author [Mohamed Endisha](https://wordpress.org/support/users/endisha/)
 * (@endisha)
 * [6 months ago](https://wordpress.org/support/topic/passkey-authentication-failed-please-try-again-if-you-want-to-proceed/#post-18756955)
 * [@iamsaugata](https://wordpress.org/support/users/iamsaugata/)
 * 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](https://ibb.co/GYZ6SmK)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Secure Passkeys] Passkey authentication failed. Please try again if you want to proceed.](https://wordpress.org/support/topic/passkey-authentication-failed-please-try-again-if-you-want-to-proceed/)
 *  Plugin Author [Mohamed Endisha](https://wordpress.org/support/users/endisha/)
 * (@endisha)
 * [6 months ago](https://wordpress.org/support/topic/passkey-authentication-failed-please-try-again-if-you-want-to-proceed/#post-18756512)
 * [@iamsaugata](https://wordpress.org/support/users/iamsaugata/)
 * 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.

Viewing 15 replies - 1 through 15 (of 93 total)

1 [2](https://wordpress.org/support/users/endisha/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/endisha/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/endisha/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/endisha/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/endisha/replies/page/7/?output_format=md)
[→](https://wordpress.org/support/users/endisha/replies/page/2/?output_format=md)