Przejdź do treści
  • Zaloguj się
  • Zarejestruj się
WordPress.org

Polska

  • Motywy
  • Wtyczki
  • Aktualności
  • Wsparcie
  • Informacje
  • Zlecenia
  • Pomóż w tłumaczeniu
  • Kontakt
  • Pobierz WordPressa
Pobierz WordPressa

Wtyczki

  • Moje ulubione
  • Testy beta
  • Twórcy
Pobierz

Log in with Google

Autor: rtCamp
  • Szczegóły
  • Recenzje
  • Instalacja
  • Rozwój
Wsparcie

Opis

Ultra minimal plugin to let your users login to WordPress applications using their Google accounts. No more remembering hefty passwords!

Initial Setup

  1. Create a project from Google Developers Console if none exists.

  2. Go to Credentials tab, then create credential for OAuth client.

    • Application type will be Web Application
    • Add YOUR_DOMAIN/wp-login.php in Authorized redirect URIs
  3. This will give you Client ID and Secret key.

  4. Input these values either in WP Admin > Settings > WP Google Login, or in wp-config.php using the following code snippet:

    define( 'WP_GOOGLE_LOGIN_CLIENT_ID', 'YOUR_GOOGLE_CLIENT_ID' );
    define( 'WP_GOOGLE_LOGIN_SECRET', 'YOUR_SECRET_KEY' );

Browser support

These browsers are supported. Note, for example, that One Tap Login is not supported in Safari.

How to enable automatic user registration

You can enable user registration either by
– Enabling Settings > WP Google Login > Enable Google Login Registration

OR

  • Adding
    define( 'WP_GOOGLE_LOGIN_USER_REGISTRATION', 'true' );
    in wp-config.php file.

Note: If the checkbox is ON then, it will register valid Google users even when WordPress default setting, under

Settings > General Settings > Membership > Anyone can register checkbox

is OFF.

Restrict user registration to one or more domain(s)

By default, when you enable user registration via constant WP_GOOGLE_LOGIN_USER_REGISTRATION or enable Settings > WP Google Login > Enable Google Login Registration, it will create a user for any Google login (including gmail.com users). If you are planning to use this plugin on a private, internal site, then you may like to restrict user registration to users under a single Google Suite organization. This configuration variable does that.

Add your domain name, without any schema prefix and www, as the value of WP_GOOGLE_LOGIN_WHITELIST_DOMAINS constant or in the settings Settings > WP Google Login > Whitelisted Domains. You can whitelist multiple domains. Please separate domains with commas. See the below example to know how to do it via constants:
define( 'WP_GOOGLE_LOGIN_WHITELIST_DOMAINS', 'example.com,sample.com' );

Note: If a user already exists, they will be allowed to login with Google regardless of whether their domain is whitelisted or not. Whitelisting will only prevent users from registering with email addresses from non-whitelisted domains.

Hooks

For a list of all hooks please refer to this documentation.

wp-config.php parameters list

  • WP_GOOGLE_LOGIN_CLIENT_ID (string): Google client ID of your application.

  • WP_GOOGLE_LOGIN_SECRET (string): Secret key of your application

  • WP_GOOGLE_LOGIN_USER_REGISTRATION (boolean) (optional): Set true If you want to enable new user registration. By default, user registration defers to Settings > General Settings > Membership if constant is not set.

  • WP_GOOGLE_LOGIN_WHITELIST_DOMAINS (string) (optional): Domain names, if you want to restrict login with your custom domain. By default, it will allow all domains. You can whitelist multiple domains.

BTW, We’re Hiring!

Zrzuty ekranu

  • Login screen with Google option added.
  • Plugin settings screen.
  • Settings within Google Developer Console.

Bloki

Wtyczka dodaje 1 blok.

  • Log in with Google

Instalacja

  1. Upload plugin-name.php to the /wp-content/plugins/ directory
  2. Activate the plugin through the 'Plugins’ menu in WordPress
  3. Follow „Setup” instructions in ReadMe to configure credentials from Google Developers Console.

Najczęściej zadawane pytania

Reporting a bug 🐞

Before creating a new issue, do browse through the existing issues for resolution or upcoming fixes.

If you still need to log an issue, making sure to include as much detail as you can, including clear steps to reproduce the issue, if possible.

Creating a pull request

Want to contribute a new feature? Start a conversation by logging an issue.

Once you’re ready to send a pull request, please run through the following checklist:

  1. Browse through the existing issues for anything related to what you want to work on. If you don’t find any related issues, open a new one.

  2. Fork this repository.

  3. Create a branch from develop for each issue you’d like to address and commit your changes.

  4. Push the code changes from your local clone to your fork.

  5. Open a pull request and that’s it! We’ll respond with feedback as soon as possible (Isn’t collaboration a great thing? 😌)

  6. Once your pull request has passed final code review and tests, it will be merged into develop and be in the pipeline for the next release. Props to you! 🎉

Unit testing

  • Clone the plugin from repository.

  • Run composer install && composer tests:unit to run unit tests.

Recenzje

Very nice plugin

19db 2023-04-24
Works as expected but the important part is that is customization friendly (ex. shortcodes) and easy to set up. Thank you

Best plugin for login with Google

fakem1ner 2022-05-30
Half of the plug-ins simply do not work, the other can be configured only when the pigs fly. But this plugin is configured in just a couple of clicks and works stably. And just because it is one of the few workers I am writing this and rate with 5 stars

Greate plugin!

elena1721 2022-03-07
Easy to use

Works out of the box

Bhanu Singh 2021-12-09
Works as it is intended. Great extendibility as well.

Cannot never login to my wp-admin dashboard again

victort 2021-11-30
I was locked from logging in to my wp-admin dashboard after installing "Login With Google". Wordpress keeps telling me that my login credentials were invalid, and even after I reset my password, the same problem happened again and again. I found my server provider to deactivate the plugin, but then it reactivated automatically, now I still could not log in to my wp-admin dashboard (same to all my admin users).

Easy to use

napathello 2021-07-24
This plugin easy to use and lightweight You can make google login in 3 min Thank you
Przeczytaj 11 recenzji

Kontrybutorzy i deweloperzy

„Log in with Google” jest oprogramowaniem open source. Poniższe osoby miały wkład w rozwój wtyczki.

Zaangażowani
  • rtCamp

Wtyczka “Log in with Google” została przetłumaczona na 3 języki. Podziękuj tłumaczom za ich wkład.

Przetłumacz wtyczkę “Log in with Google” na swój język.

Interesuje cię rozwój wtyczki?

Przeglądaj kod, sprawdź repozytorium SVN lub czytaj dziennik rozwoju przez RSS.

Rejestr zmian

1.3.1

  • Maintenance release: Updated minimum requirements.

1.3.0

  • Feature: Gutenberg block for Login button.
  • Feature: Save user first name and last name on registration.
  • Add: PHP 8.0 compatibility.
  • Add: Added hook after user authentication.
  • Add: Added hook after user is logged-in.
  • Fix: set login cookie with shortcode display.
  • Fix: Redirection back to login page issue.
  • Updated npm packages and laravel-mix.

1.2.2

  • Maintenance release. Requires PHP >= 7.4.

1.2.1

  • Feature: Provide filter for client arguments: rtcamp.google_client_args

1.2

  • Feature: One-Tap Login setting for supported browsers.

1.1

  • Feature: Add shortcode [google_login] with optional attributes: [google_login button_text="Login with Google" force_display="no" redirect_to="https://example.url/page"].
  • Feature: Replace third-party oAuth client with custom GoogleClient class.
  • Fix: Identification of state value, whether a given oAuth login is relevant to this plugin.
  • Remove: Google oAuth library from composer.

1.0.14

  • Revert Login with GitHub state fix.

1.0.13

  • Fix login issue related to oAuth state.

1.0.12

  • Fix conflict with Login with GitHub plugin.

1.0.11

  • Add 'login_with_google/client_arguments’ filter for Google_Client arguments.

1.0.10

  • Fix issue where JS/CSS were not loading.

1.0.9

  • Initial release.

Meta

  • Wersja: 1.3.1
  • Ostatnia aktualizacja: 2 miesiące temu
  • Aktywne instalacje: 2 000+
  • Wersja WordPressa: 5.5 lub nowszej
  • Testowany do: 6.2.2
  • Wersja PHP: 7.4 lub nowszej
  • Języki:

    Chinese (China), Chinese (Taiwan), English (US), i Swedish.

    Przetłumacz na swój język

  • Tagi:
    authenticationGoogle Loginoauthsign insso
  • Widok zaawansowany

Oceny

Zobacz wszystkie
  • 5 gwiazdek 10
  • 4 gwiazdki 0
  • 3 gwiazdki 0
  • 2 gwiazdki 0
  • 1 gwiazdka 1
Zaloguj się, aby przesłać recenzję.

Zaangażowani

  • rtCamp

Wsparcie

Zagadnienia rozwiązane w przeciągu ostatnich dwóch miesięcy:

0 z 5

Zobacz forum wsparcia

Złóż datek

Czy chcesz wesprzeć rozwój wtyczki?

Wspomóż wtyczkę

  • O nas
  • Aktualności
  • Hosting
  • Złóż datek
  • Gadżety
  • Pomoc techniczna
  • Programiści
  • Zaangażuj się
  • Nauka
  • Prezentacja
  • Wtyczki
  • Motywy
  • Wzorce
  • WordCamp
  • WordPress.TV
  • BuddyPress
  • bbPress
  • WordPress.com
  • Matt
  • Prywatność
  • Kod publiczny
WordPress.org
WordPress.org

Polska

  • Odwiedź naszego Facebooka
  • Odwiedź naszego Twittera
  • Odwiedź nasze konto na Instagramie
  • Odwiedź nasze konto na LinkedIn
Kod to poezja.