Title: Login With
Author: STASEO
Published: <strong>5 сар 4, 2025</strong>
Last modified: 4 сар 27, 2026

---

Search plugins

![](https://ps.w.org/login-with/assets/banner-772x250.png?rev=3287438)

![](https://ps.w.org/login-with/assets/icon-256x256.png?rev=3287438)

# Login With

 By [STASEO](https://profiles.wordpress.org/staseo/)

[Download](https://downloads.wordpress.org/plugin/login-with.1.4.zip)

 * [Details](https://mn.wordpress.org/plugins/login-with/#description)
 * [Reviews](https://mn.wordpress.org/plugins/login-with/#reviews)
 *  [Installation](https://mn.wordpress.org/plugins/login-with/#installation)
 * [Development](https://mn.wordpress.org/plugins/login-with/#developers)

 [Support](https://wordpress.org/support/plugin/login-with/)

## Description

Login With – Google Login for WooCommerce, is a simple and secure plugin that adds
Google authentication to your WooCommerce store. It allows customers to log in using
their Google accounts, providing a quick and familiar login experience that leads
to better conversion rates and more sales. With just one click, customers can login
with Google — no passwords, no forms, no friction. Faster checkouts mean fewer abandoned
carts and more completed purchases. Simple to set up, trusted by users, and built
to help your store grow.

### External Services

This plugin uses Google OAuth 2.0 for authentication. When a user clicks the “Login
with Google” button, the following data is sent to Google’s servers:

 1. Client ID and Client Secret (configured in plugin settings)
 2. User’s email address and basic profile information (name)
 3. Authentication state token for security

This data is used to:
 – Verify the user’s Google account – Retrieve basic profile
information – Create or update the user’s account in your WooCommerce store

The plugin connects to these Google services:
 – https://oauth2.googleapis.com/token(
for authentication) – https://www.googleapis.com/oauth2/v2/userinfo (for user profile
data)

For more information about Google’s data handling, please review:
 – [Google’s Terms of Service](https://policies.google.com/terms)–
[Google’s Privacy Policy](https://policies.google.com/privacy)

#### Features

 * Conversion rate and sales booster
 * Adds a “Login with Google” button to WooCommerce login forms
 * Works on both the account page and checkout
 * Secure OAuth 2.0 authentication
 * Automatic user account creation for new Google users
 * Syncs user’s name and email from Google profile
 * Customizable button appearance
 * Mobile-friendly design

#### Requirements

 * WordPress 5.0 or higher
 * WooCommerce 3.0 or higher
 * PHP 7.2 or higher
 * Google API credentials (Client ID and Client Secret)

## Installation

 1. Go to Plugins > Add New Plugin > Upload Plugin > Select the zip folder / Upload/
    Install / Activate
 2. Go to Settings > Login With
 3. Enter your Google API credentials:
 4.  * Client ID
     * Client Secret
 5. Add the Redirect URI to your Google Cloud Console:
 6.  * Go to Google Cloud Console > Credentials
     * Edit your OAuth 2.0 Client ID
     * Add the Redirect URI shown in the plugin settings
 7. Save the settings

#### Getting Google API Credentials

 1.  Go to the [Google Cloud Console](https://console.cloud.google.com/)
 2.  Create a new project or select an existing one
 3.  Enable the Google+ API
 4.  Go to Credentials
 5.  Create an OAuth 2.0 Client ID
 6.  Set the application type to “Web application”
 7.  Add your website’s domain to authorized JavaScript origins
 8.  Add the Redirect URI from the plugin settings
 9.  Copy the Client ID and Client Secret to the plugin settings

## FAQ

### Where can I get Google API credentials?

You can get them from the Google Cloud Console. See the “Getting Google API Credentials”
section in the installation instructions.

### Can I customize the login button?

Yes, you can customize the button’s appearance by modifying the CSS in the plugin’s
style.css file.

### Does this work with WooCommerce checkout?

Yes, the Google login button appears on both the account page and during checkout.

## Reviews

![](https://secure.gravatar.com/avatar/7d0c9347e4e5e71602ffe2ab12aa6d2502776db50a959670c7d6124ceded7e3c?
s=60&d=retro&r=g)

### 󠀁[Do not download](https://wordpress.org/support/topic/do-not-download-27/)󠁿

 [littleplugins](https://profiles.wordpress.org/littleplugins/) 4 сар 27, 2026 1
reply

Plugin downloaded 7000 duplicate images to my site. Author is either a moron or 
a hacker.

 [ Read all 1 review ](https://wordpress.org/support/plugin/login-with/reviews/)

## Contributors & Developers

“Login With” is open source software. The following people have contributed to this
plugin.

Contributors

 *   [ STASEO ](https://profiles.wordpress.org/staseo/)

[Translate “Login With” into your language.](https://translate.wordpress.org/projects/wp-plugins/login-with)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/login-with/), check
out the [SVN repository](https://plugins.svn.wordpress.org/login-with/), or subscribe
to the [development log](https://plugins.trac.wordpress.org/log/login-with/) by 
[RSS](https://plugins.trac.wordpress.org/log/login-with/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.4

 * SECURITY: Fixed Login CSRF / Login Fixation – the previous WordPress nonce-based
   state was identical for all anonymous users, allowing an attacker to log a victim
   into the attacker’s account. State is now bound to a per-browser cookie.
 * SECURITY: OAuth callback handler now only runs on the dedicated redirect URI 
   path; previously a crafted ?code=…&state=… URL on any page would trigger the 
   flow.
 * SECURITY: Client Secret field on the settings page is now a password input (was
   plaintext) and disables autocomplete.
 * SECURITY: OAuth state is now cryptographically random (random_bytes), single-
   use, and short-lived (10 minutes).
 * Added staseo_login_with_allow_user filter so site owners can block specific accounts(
   e.g. admins) from logging in via Google.
 * Cache-friendly: state is generated server-side on click, so the login button 
   works correctly with page caching plugins.
 * Added explicit timeouts on Google API requests.
 * Now compatible with WordPress in a subdirectory.

#### 1.3

 * CRITICAL FIX: Removed buggy media library registration that could create thousands
   of duplicate “Google Login Button” attachments on every page load
 * Added automatic cleanup of duplicate attachments on plugin update (runs once 
   when an admin visits wp-admin)
 * Security: Require Google’s verified_email flag to prevent login via unverified
   Google accounts
 * Hardening: Safer handling of missing given_name / family_name in Google response
 * Removed unused dead code (AJAX nonce verifier, PNG-as-script registration)

#### 1.2

 * Fixed popup login flow – popup now closes automatically after successful Google
   login
 * Parent window now properly refreshes and shows user logged in
 * Added fallback mechanisms for cross-origin scenarios
 * Improved user experience with login success feedback

#### 1.1

 * Updated compatibility info

#### 1.0

 * Initial release
 * Added Google login functionality
 * Added settings page
 * Added automatic user creation
 * Added mobile-friendly design

## Meta

 *  Version **1.4**
 *  Last updated **3 долоо хоног ago**
 *  Active installations **20+**
 *  WordPress version ** 5.0 or higher **
 *  Tested up to **6.9.4**
 *  PHP version ** 7.2 or higher **
 *  Language
 * [English (US)](https://wordpress.org/plugins/login-with/)
 * Tags
 * [authentication](https://mn.wordpress.org/plugins/tags/authentication/)[google](https://mn.wordpress.org/plugins/tags/google/)
   [login](https://mn.wordpress.org/plugins/tags/login/)[social login](https://mn.wordpress.org/plugins/tags/social-login/)
   [woocommerce](https://mn.wordpress.org/plugins/tags/woocommerce/)
 *  [Advanced View](https://mn.wordpress.org/plugins/login-with/advanced/)

## Ratings

 1 out of 5 stars.

 *  [  0 5-star reviews     ](https://wordpress.org/support/plugin/login-with/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/login-with/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/login-with/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/login-with/reviews/?filter=2)
 *  [  1 1-star review     ](https://wordpress.org/support/plugin/login-with/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/login-with/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/login-with/reviews/)

## Contributors

 *   [ STASEO ](https://profiles.wordpress.org/staseo/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/login-with/)

## Donate

Would you like to support the advancement of this plugin?

 [ Donate to this plugin ](https://www.paypal.com/donate/?hosted_button_id=PFRGSWG8VVP4J)