Chat life for telegram
Plugin to create a simple real-time chat on a site running wordpress
The feature is a link and a reply directly from the chat telegram
Installation:
Everything is simple here. The plugin is available from the wordpress repository (Plugins -> add new -> search - Chat life for telegram ).
Or download the Chat life for telegram archive.
Activate and go to settings.
Settings
Fill in the fields such as, Token and chat id
Token - How to get it can be read here
chat id - chat id (numeric), where messages will come
Save !!
Configure chat:
- title - the title of the chat button
- Message One - The first message the user sees when opening a chat
WebHook
(You need to install webhook to exchange messages). Press SET - if you received a message ( Webhook was set ), all is well)))
Topics
So far, 2 topics are supported. More will be available to choose from.
You can attach your style file via the tcl_theme_list filter
add_filter('tcl_theme_list', function ($data) {
$data[3] = [
'name' => 'My theme',
'url' => '/css/my-them.css',
];
return $data;
});
Once connected, your css will be listed in the settings
Chat on the site
Depending on the topic, it may look different
Example of work
For developers
Filters available
tcl_webhook_input - filter data webhook
tcl_send_telegram_before_text - text send to telegram
tcl_theme_list
Hooks are available
tcl_before_send_to_telegram
tcl_after_send_to_telegram