WordPress.org

Україна

  • Теми
  • Плагіни
  • Новини
  • Підтримка
  • Про
  • Документація
  • Спільнота
  • Завантажити WordPress
Завантажити WordPress
WordPress.org

Plugin Directory

WP Telegram (Вхід і Реєстрація)

  • Надіслати плагін
  • My favorites
  • Log in
  • Надіслати плагін
  • My favorites
  • Log in

WP Telegram (Вхід і Реєстрація)

Від автора WP Socio
Завантажити
Live Preview
  • Деталі
  • Відгуки
  • Встановлення
  • Розробка
Підтримка

Опис

Дозвольте користувачам входити на ваш веб-сайт за допомогою Telegram, спростіть їм авторизацію та дозвольте отримувати емейл сповіщення у Telegram.

Чому Telegram вхід?

  • Вилучає тривалі, незручні форми реєстрації
  • Знімає потребу в каптчах
  • Вилучає необхідність підтвердження електронною поштою
  • Більше ніяких проблем з “забули пароль?”
  • Забезпечує достатню кількість інформації про користувача

Особливості

  • Безпечний, конфіденційний і простий метод входу
  • Покладається на хешовані рядки даних SHA-256
  • Дані користувачів достовірні – підтверджені Telegram
  • Можна використовувати для запобігання спам реєстрацій
  • Легка інсталяція і налаштування для адміністратора
  • Можна використовувати для реєстрації нових користувачів
  • Існуючі користувачі можуть підключити свій обліковий запис Telegram
  • Користувачам можна надати будь-яку бажану роль на веб-сайті
  • Кнопка входу може відображатися в будь-якому місці
  • Можна розширити за допомогою користувацького коду

Інфо віджета

Перейдіть до Зовнішній вигляд > Віджети, натисніть/перетягніть WP Telegram Вхід і розмістіть його там, де ви хочете.

Alternatively, you can use the below shortcode.

Всередині вмісту сторінок і публікацій:

[wptelegram-login button_style="large" show_user_photo="1" corner_radius="15" show_if_user_is="logged_in"]

Всередині шаблонів тем

<?php
if ( function_exists( 'wptelegram_login' ) ) {
    $args = array(
        // 'show_user_photo' => false,
        // 'corner_radius'   => 15,
        // 'button_style'    => 'large',
        // 'show_if_user_is' => 'logged_out',
    );

    wptelegram_login( $args );
}
?>

або


Telegram Web App data

The plugin can also handle the data sent by the Telegram Web App. Simply send window.Telegram.WebApp.initData query string to this URL:

http://<your-website.com>/?action=wptelegram_login&source=WebAppData

The final URL might look like this:

http://<your-website.com>/?action=wptelegram_login&source=WebAppData&query_id=XXXX&user=XXXX&auth_date=XXXX&hash=XXXX

The plugin will:

  • Validate the data for you
  • Create a user account for the user if it doesn’t exist
  • Login the user to the website in the context of your Web App.

Note: You need to use the same bot token for both the plugin and the Web App.

Відмінна підтримка

Join the Chat

We have a public group on Telegram to help set up the plugin and discuss issues, features, translations, etc. Join @WPTelegramChat
For rules, see the pinned message. No spam, please.

Get in touch

  • Website wpsocio.com
  • Telegram @WPTelegram
  • Facebook @WPTelegram
  • Twitter @WPTelegram

Contribution

Development takes place in our Github monorepo, and all contributions welcome.

Скріншоти

  • Сторінка налаштувань
  • Сторінка налаштувань (продовж…)
  • Сторінка налаштувань (продовж…)
  • Налаштування віджета (бек-енд)
  • Вигляд віджета (фронт-енд)
  • Сторінка реєстрації і входу
  • Таблиця списку користувачів (для адміністраторів)
  • User Profile (wp-admin)
  • WooCommerce Account Page

Блоки

Цей плагін надає 1 блок.

  • WP Telegram Login

Встановлення

Automatic installation

Automatic installation is the easiest way — WordPress will handle the file transfer, and you won’t need to leave your web browser. To do an automatic install of the plugin:

  • Log in to your WordPress dashboard
  • Navigate to the Plugins menu, and click “Add New”
  • In the search field type “wptelegram-login” and hit Enter
  • Locate the plugin in the list of search results
  • Click on “Install Now” and wait for the installation to complete
  • Click on “Activate”

Manual installation

Manual installation method requires downloading the plugin and uploading it to your web server via your favorite FTP application. The official WordPress documentation contains instructions on how to do this here.

Updating

Automatic updates should work smoothly, but we still recommend you back up your site.

Часті питання

Як створити Telegram Бота

Як мені створити Бота?.

Чи можу я відображати кнопку кілька разів на сторінці

Sorry, that’s not possible because Telegram allows only a single button per page.

Я бачу повідомлення “Недійсний домен Бота”

Please follow the instructions given on the WP Telegram Login settings page.

It looks like you missed one that says to send the /setdomain command to @BotFather.

Відгуки

Очень классный плагин — установил и всё GOOD

RealMag777 25.03.2025 1 reply
Очень классный плагин — просто установил, и всё сразу заработало! Теперь заход в сайт только по кнопке Telegram, что мне и нужно было. Особенно понравилась возможность кастомизации. Мой сайт использует данные из констант, и я легко подключил их в систему через хуки. Даже не пришлось читать документацию — просто заглянул в код, и всё стало понятно. За пару минут всё настроил. Отличный инструмент — рекомендую всем, кому нужен быстрый и безопасный вход через Telegram. Пользуйтесь! p.s add_filter('wpsocio\wputils\options_wptelegram_login_get_bot_token', function ($value) { return BOT_TOKEN; }); add_filter('wpsocio\wputils\options_wptelegram_login_get_bot_username', function ($value) { return BOT_USERNAME; }); add_filter('wpsocio\wputils\options_wptelegram_login_get_redirect_to', function ($value) { return 'custom_url'; }); add_filter('wpsocio\wputils\options_wptelegram_login_get_redirect_url', function ($value) { return admin_url('edit.php?post_type=product&page=bot'); }); add_filter('wpsocio\wputils\options_wptelegram_login_get_disable_signup', function ($value) { return true; }); add_filter('wpsocio\wputils\options_wptelegram_login_get_show_user_photo', function ($value) { return true; }); add_filter('wpsocio\wputils\options_wptelegram_login_get_lang', function ($value) { return defined('BOT_DEFAULT_LANGUAGE') ? BOT_DEFAULT_LANGUAGE : 'en'; });

not work

ezodoc 18.03.2025
in telegram mini-apps

High quality plugin and great support

ashraf88 19.10.2024 1 reply
I just tried WP Telegram Login and WP Telegram Login Pro, and I have to say it’s an excellent plugin with a lot of features. The support team is also very helpful, offering direct chat for instant assistance instead of email, which is fantastic.

Working awesome

a2262755 01.02.2024
Great job, thanks

Seamless Integration and Exceptional Support!

alexcodelab 29.01.2024
I recently integrated the WP Telegram Login & Register plugin into my website, and I couldn’t be happier with the results. This plugin offers a seamless and efficient way for users to log in and register through Telegram, adding a new level of convenience to the user experience. What truly sets this plugin apart, however, is the outstanding support provided by the development team. When I encountered a specific customization challenge, the support team not only responded promptly but also went above and beyond to create a tailored solution for my needs. Their friendly and professional approach made the entire process smooth and enjoyable. The plugin itself is well-designed, easy to configure, and functions flawlessly. The Telegram integration is a game-changer, offering a secure and user-friendly alternative for login and registration. Plus, the customization options provided by the plugin allow for a seamless integration with the overall look and feel of my website. In conclusion, the WP Telegram Login & Register plugin exceeded my expectations, not only in terms of functionality but also in the level of support provided. If you’re looking for a reliable and user-friendly solution with exceptional customer service, look no further. I highly recommend this plugin to anyone seeking a top-notch Telegram login and registration experience for their WordPress site.

Simple & Best telegram API Plugin

veteranjin 23.01.2024
Simple & Best telegram API Plugin
Прочитати всі 36 відгуків

Учасники та розробники

“WP Telegram (Вхід і Реєстрація)” — проект з відкритим вихідним кодом. В розвиток плагіну внесли свій вклад наступні учасники:

Учасники
  • WP Socio
  • Irshad Ahmad

“WP Telegram (Вхід і Реєстрація)” було перекладено на 8 локалізацій. Дякуємо перекладачам за їх роботу.

Перекладіть “WP Telegram (Вхід і Реєстрація)” на вашу мову.

Цікавитесь розробкою?

Перегляньте код, перегляньте сховище SVN або підпишіться на журнал розробки за допомогою RSS.

Журнал змін

1.11.11

  • Fixed Bot Token and Message tests not working for lowercase URLs
  • Fixed background color for the setting page

See full changelog

Мета

  • Version 1.11.11
  • Last updated 2 місяці тому
  • Active installations 1 000+
  • WordPress version 6.5 або вище
  • Tested up to 6.8.1
  • PHP version 7.4 або вище
  • Languages

    Dutch, English (US), German, Polish, Russian, Spanish (Chile), Spanish (Spain), Swedish і Ukrainian.

    Перекладіть на свою мову

  • Tags
    loginregistersignupsocialtelegram
  • Розширений перегляд

Оцінки

4.9 out of 5 stars.
  • 35 5-star reviews 5 stars 35
  • 0 4-star reviews 4 stars 0
  • 0 3-star reviews 3 stars 0
  • 1 2-star review 2 stars 1
  • 0 1-star reviews 1 star 0

Додати свій відгук

See all reviews

Учасники

  • WP Socio
  • Irshad Ahmad

Підтримка

Проблеми вирішені за останні два місяці:

1 з 1

Перейти в форум підтримки

Пожертвування

Ви хотіли б підтримати розвиток цього плагіна?

Пожертвувати на розвиток плагіна

  • Про нас
  • Новини
  • Хостинг
  • Приватність
  • Вітрина
  • Теми
  • Плагіни
  • Паттерни
  • Навчання
  • Підтримка
  • Розробники
  • WordPress.tv ↗
  • Приєднатися
  • Події
  • Підтримати ↗
  • П'ять для майбутнього
  • WordPress.com ↗
  • Matt ↗
  • bbPress ↗
  • BuddyPress ↗
WordPress.org
WordPress.org

Україна

  • Visit our X (formerly Twitter) account
  • Visit our Bluesky account
  • Visit our Mastodon account
  • Visit our Threads account
  • Завітайте на нашу сторінку в Facebook
  • Visit our Instagram account
  • Visit our LinkedIn account
  • Visit our TikTok account
  • Visit our YouTube channel
  • Visit our Tumblr account
Код – це поезія.