Title: Login With
Author: STASEO
Published: <strong>4 mai 2025</strong>
Last modified: 27 aprilie 2026

---

Caută module

![](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

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

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

 * [Detalii](https://ro.wordpress.org/plugins/login-with/#description)
 * [Recenzii](https://ro.wordpress.org/plugins/login-with/#reviews)
 *  [Instalare](https://ro.wordpress.org/plugins/login-with/#installation)
 * [Dezvoltare](https://ro.wordpress.org/plugins/login-with/#developers)

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

## Descriere

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)

## Instalare

 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

## Întrebări frecvente

### 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.

## Recenzii

![](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/) 27 aprilie 2026 
1 răspuns

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

 [ Citește o recenzie ](https://wordpress.org/support/plugin/login-with/reviews/)

## Contributori și dezvoltatori

„Login With” este un software open-source. La acest modul au contribuit următoarele
persoane.

Contributori

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

[Tradu „Login With” în limba ta.](https://translate.wordpress.org/projects/wp-plugins/login-with)

### Te interesează dezvoltarea?

[Răsfoiește codul](https://plugins.trac.wordpress.org/browser/login-with/), vezi
[depozitarul SVN](https://plugins.svn.wordpress.org/login-with/), sau abonează-te
la [jurnalul de dezvoltare](https://plugins.trac.wordpress.org/log/login-with/) 
prin [RSS](https://plugins.trac.wordpress.org/log/login-with/?limit=100&mode=stop_on_copy&format=rss).

## Istoric modificări

#### 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

 *  Versiunea **1.4**
 *  Ultima actualizare **Acum 3 săptămâni**
 *  Instalări active: **20+**
 *  Versiune WordPress ** 5.0 sau mai recentă **
 *  Testat până la **6.9.4**
 *  Versiune PHP ** 7.2 sau mai recentă **
 *  Limbă
 * [English (US)](https://wordpress.org/plugins/login-with/)
 * Etichete
 * [authentication](https://ro.wordpress.org/plugins/tags/authentication/)[google](https://ro.wordpress.org/plugins/tags/google/)
   [login](https://ro.wordpress.org/plugins/tags/login/)[social login](https://ro.wordpress.org/plugins/tags/social-login/)
   [woocommerce](https://ro.wordpress.org/plugins/tags/woocommerce/)
 *  [Vizualizare avansată](https://ro.wordpress.org/plugins/login-with/advanced/)

## Evaluări

 1 din 5 stele.

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

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

[Vezi toate recenziile](https://wordpress.org/support/plugin/login-with/reviews/)

## Contributori

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

## Suport

Ai ceva de zis? Ai nevoie de ajutor?

 [Vezi forumul pentru suport](https://wordpress.org/support/plugin/login-with/)

## Donează

Vrei să sprijini dezvoltarea acestui modul?

 [ Donează pentru acest modul ](https://www.paypal.com/donate/?hosted_button_id=PFRGSWG8VVP4J)