Mohamed Endisha
Forum Replies Created
-
Forum: Plugins
In reply to: [Secure 2FA] Redirect Loop When Enforcing 2FA for WooCommerce CustomersClosing this ticket for now. Feel free to reopen or start a new one if needed.
Forum: Plugins
In reply to: [Secure 2FA] Redirect Loop When Enforcing 2FA for WooCommerce CustomersCurrently, the plugin only supports the default WordPress login system. WooCommerce is not yet supported, as it uses a custom login flow and frontend-only access, which differs from the standard WordPress login.
We’re aware of the need for WooCommerce compatibility and will consider it for a future update.
Forum: Plugins
In reply to: [Secure Passkeys] Buddypress SupportClosing this ticket for now. Feel free to reopen or start a new one if needed.
I’ll review whether it’s necessary to add these actions in a future release.
Forum: Reviews
In reply to: [Secure Passkeys] Absolutely Awesome@teeboy4real Thank you.
Forum: Plugins
In reply to: [Secure Passkeys] Auto generate Security Key NameSecure Passkeys does not currently include a dedicated hook or filter to modify the security key name, but you can achieve this by using a general WordPress filters.
Security key name must be unique for the user, so we try to auto-generate one using the current date and time. You can still modify it afterward.
Please note that only letters (A–Z, a–z), underscores (
_), and hyphens (-) are allowed in the key name.add_filter('sanitize_text_field', function($filtered, $str){
$action = _sanitize_text_fields($_POST['action'] ?? '', false);
if($action == 'secure_passkeys_frontend_register_passkey'){
$_POST['security_key_name'] = date('ymdHis');//250625083110
}
return $filtered;
}, 100, 2);It may be added as a configurable option in the settings in a future release.
Forum: Plugins
In reply to: [Secure Passkeys] Buddypress SupportBuddyPress support isn’t currently included by default, and I haven’t specifically tested it with the plugin. If BuddyPress uses a custom login page instead of the default WordPress one, you can manually add the Secure Passkeys login button using the shortcode
[secure_passkeys_login_form]To allow users to register a passkey outside of their profile page, you can also use:
[secure_passkeys_register_form]That should allow users to log in with a passkey from the BuddyPress login screen.
Native support for BuddyPress integration may be considered in a future release.
We’ll check the possibility of integrating with BuddyPress in a future release.
- This reply was modified 11 months, 3 weeks ago by Mohamed Endisha.
Forum: Plugins
In reply to: [Secure Passkeys] how to disable activity logsThere isn’t a direct way to disable the activity log entirely, but you can achieve a similar effect by enabling the “Delete log records older than” option in Secure Passkeys > Settings > Advanced Settings.
By default, the available options range from 30 to 365 days. You can use a filter to add a “1 day” option. You can add the following filter to your child theme or custom plugin:
add_filter('secure_passkeys_log_cleanup_allowed_days_periods', function ($periods) {
$periods[] = 1;
sort($periods);
return $periods;
});Once this is added, the 1 day option will appear in the settings. Selecting it will ensure that activity logs are cleaned up daily, which should help as a workaround for your case.
Also, make sure the cron job is enabled so the cleanup runs automatically in the background. You can find setup instructions on the Advanced Settings page.
If this solution helped, I’d really appreciate it if you could confirm it worked for you—and consider leaving a positive review. Your feedback helps support the plugin’s continued development!
Forum: Plugins
In reply to: [Secure Passkeys] Integrating Passkey Custom Login Button with ElementorI think the shortcode was helpful in this case. Since you used it instead of your custom button, you could easily override the shortcode HTML via Secure Passkeys hooks to apply the same CSS.
This topic will be closed for inactivity. Please reopen it if you need any further assistance.
Forum: Plugins
In reply to: [Secure Passkeys] Integrating Passkey Custom Login Button with ElementorIf yes, try replacing it with the Secure Passkey login shortcode
[secure_passkeys_login_form]Forum: Plugins
In reply to: [Secure Passkeys] Integrating Passkey Custom Login Button with ElementorI haven’t used Elementor previously. Does it support adding custom code?
If yes, try replacing it with the Secure Passkey login shortcode
[secure_passkeys_login_form]If this works, we can proceed with this simpler approach.
Forum: Reviews
In reply to: [Secure Passkeys] Excellent@pierremoser Thank you.
It may be related to your theme and require some CSS customization, not a plugin update.
Share your checkout page URL, and I will try to help.
Forum: Plugins
In reply to: [International Phone Number Format] Please fix the mask for UkraineIt’s related to the intl-tel-input library and used for country selection, and I will include the fix in the next release.
Thank you
Forum: Reviews
In reply to: [Secure Passkeys] Fantastic, Amazing, Time SaverThank you so much for your kind words and support.