CS BioLogin – Seamless Biometric Authentication
by Concatstring Solutions 0 (0 reviews)

CS BioLogin – Seamless Biometric Authentication

Secure biometric login (WebAuthn / FIDO2 / Passkeys) for WordPress and WooCommerce using Face ID, Touch ID, or fingerprint.

CS BioLogin ranks #59,825 among WordPress.org plugins with 0+ active installations, is #1,020 of 1,590 in the Authentication category, and was last updated Sep 10, 2026. Data from WordPress.org, refreshed twice daily — see methodology.

Compatible with WP 7.1.2
v1.3.1 Current Version v1.3.1
Updated 1 week ago Last Update on 10 Sep, 2026
Refreshed 7 hours ago Last Refreshed on
#1,020 of 1,590 in Authentication Downloads -70.8% this week
View on WordPress.org
Rank
#59,825
No change
Active Installs
0+
-100%
KW Avg Position
29
11 worse
Downloads
551
+1 today
Support Resolved
0%
No change
Rating
0%
Review 0 out of 5
0 (0 reviews)

Next Milestone 10

Total Progress 10%
0+ 10+
40,085
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 9 more installs to reach 10+

Rank Changes

45,480 51,577 57,675 63,773 69,870 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
45,480 51,577 57,675 63,773 69,870 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Current #59,825
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 20 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
0 10 20 30 40 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

0.0
0 reviews
Overall 0%
5
0 (0%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

Frequently Asked Questions

Common questions about CS BioLogin – Seamless Biometric Authentication

No. WebAuthn keeps biometrics on the device. The site only stores a public key used to verify future logins.
No. Challenges, verification, and credential storage all run on your WordPress installation. JavaScript and CSS are bundled with the plugin (no third-party CDNs).
Yes, for production sites. The plugin shows an admin notice if HTTPS is missing (localhost and .local hosts are exempt for development).
Yes, unless the administrator enables Force Biometric Login, which blocks password sign-in for any account that already has a registered passkey. Accounts without one yet can still use their password until they set one up.
Yes. Device management appears under My Account, and biometric login can appear on WooCommerce login forms when enabled.
Extensions such as 1Password, Bitwarden, or LastPass may intercept passkey prompts. Enable passkey support in the manager or disable autofill for your site so the native OS dialog (Touch ID, Face ID, Windows Hello) can appear.
Yes. Use Biometric Login → User Management to reset devices, view logs, and register passkeys on behalf of users (with appropriate capability checks). To remove every registered device for every user in one action, use the "Reset All Devices for All Users" button in the Security Settings tab's Danger Zone: it requires typing a confirmation phrase and is logged to the Security Logs.
[csbisebi_device_manager]: Renders the full "Manage Biometric Devices" panel: registered device list, add/rename/remove controls, and a registration form. Only visible to logged-in users; logged-out visitors see a "Please log in" notice instead. The plugin auto-creates a page containing this shortcode on activation. [csbisebi_login_button]: Renders only a "Login with Biometrics" trigger button, safe to place inside a normal page, a widget, or a page-builder popup (e.g. Elementor). It prints nothing at all for a visitor who is already logged in. What happens on click is controlled by Biometric Login → Implementation → Popup Behavior: Show the sign-in popup (default): opens a popup with the biometric prompt plus optional password/register buttons. Authenticate directly: skips the popup and triggers the biometric prompt immediately.
All filters below can be added to your theme's functions.php or a site-specific plugin. csbisebi_button_text: Change the biometric login button's text everywhere it appears (login screen, [csbisebi_login_button] shortcode, WooCommerce account button), overriding the "Button Text" UI setting. add_filter( 'csbisebi_button_text', function ( $text ) { return 'Sign in with Face ID'; } ); csbisebi_popup_header_icon: Replace the fingerprint icon shown in the sign-in popup's header. Return raw HTML/SVG markup; return an empty string (the default) to keep the built-in, theme-colored fingerprint icon. add_filter( 'csbisebi_popup_header_icon', function ( $icon_html ) { return '<img src="https://example.com/my-icon.svg" width="32" height="32" alt="" />'; } ); csbisebi_popup_heading_title: Change the heading title in the sign-in popup's header (defaults to the site name). add_filter( 'csbisebi_popup_heading_title', function ( $title ) { return 'Welcome back!'; } ); csbisebi_popup_guest_notice: Change the helper text shown under the popup header about guest/private browsing windows. add_filter( 'csbisebi_popup_guest_notice', function ( $text ) { return 'Using a private window? You may need your phone or a security key instead.'; } ); csbisebi_popup_footer_text: Change the privacy note shown at the bottom of the sign-in popup (next to the green checkmark icon). add_filter( 'csbisebi_popup_footer_text', function ( $text ) { return 'Your biometric data stays on your device.'; } ); csbisebi_force_biometric_enabled: Override whether "Force Biometric Login" is enforced, independent of the saved setting. Return false to force it off (e.g. from a must-use plugin or an emergency break-glass hook) without touching the database. add_filter( 'csbisebi_force_biometric_enabled', function ( $enabled ) { return false; } ); csbisebi_plugin_name: Change the plugin's display name shown in menus, headings, and the WooCommerce account tab. add_filter( 'csbisebi_plugin_name', function ( $name ) { return 'ABCD Passkey Login'; } );

Sign In / Register

You need to sign in or register to use this feature.