WP Telegram
2.25K subscribers
47 photos
1 video
2 files
73 links
Get notifications and send WordPress posts automatically to Telegram when published or updated, whether to a Telegram Channel, Group, or private chat, with full control…
https://wptelegram.pro
Download Telegram
WP Telegram
Photo
πŸ“’ NEW Release πŸ“’

πŸ“Œ WP Telegram
πŸ–‹ Version 1.3.8

πŸ’‘ Filter posts by author
πŸ’‘ Filter posts by categories or terms of custom taxonomies
πŸ’‘ You can now explicitly set Excerpt Source
πŸ’‘ Performance improvements

Please Update the plugin
🌐 https://wordpress.org/plugins/wptelegram/
In the next update of @WPTelegram you will be able to get notifications from your website on Telegram. e.g. notifications about New user registrations, New WooCommerce order etc.
Here you go!
WP Telegram
Here you go!
πŸ“’ NEW Major Release πŸ“’

πŸ“Œ WP Telegram
πŸ–‹ Version 1.4

πŸ’‘ Introducing Website notifications to Telegram

πŸ”” Now receive the notifications from your website into your Telegram, like the notifications for
πŸ‘‰πŸ» New user registration
πŸ‘‰πŸ» New WooCommerce Order
πŸ‘‰πŸ» User form submission
and much more

Update the plugin and enjoy 😊
🌐 https://wordpress.org/plugins/wptelegram/
Hi guys!
Hope you love WP Telegram and are not facing any issues. If you do, never hesitate to send a support request.
And if you like it, please give your rating here
https://wordpress.org/support/plugin/wptelegram/reviews/

Also, is there anything you miss in the plugin?
What are the other features you would like WP Telegram to have? 😊

Send your suggestions to [email protected]
We now have a public group to discuss any support requests, issues, features etc.
Join @WPTelegramChat
For rules, see the pinned message. No spam.
Thank you for your trust in @WPTelegram. We are happy to be a part of 500+ websites.
If the post is not sent when:
πŸ‘‰ Sending a different post type that doesn't look like the default WordPress post while editing,
πŸ‘‰ The post is created by email using JetPack
πŸ‘‰ The post is created by WP Rest API

βœ… then you should uncheck "Show ON/OFF Switch on post edit screen" in WordPress Settings section of @WPTelegram, Save Settings and try again.
πŸ“Œ WP Telegram
πŸ–‹ Version 1.5.3

πŸ’‘Added PERSIAN Translation
Thanks to the translator - Mohammad Hero

NOTE: You can also contribute in translating the plugin into your local language. Join @WPTelegramChat to discuss

Update the plugin
🌐 https://wordpress.org/plugins/wptelegram/
Help the people in your country/community to use WP Telegram in their local language. You can do so by contributing in the translation of the plugin text, which is very easy.
If anyone wants to take part in the translations, please join @WPTelegramChat for instructions and help.
Thanks
If you want to translate WP Telegram, you can use Poedit (poedit.net) and open the (latest/updated) .POT file below.
Easy and simple 😊

When you complete the translation, you can post the generated .PO file in @WPTelegramChat
wptelegram.pot
17.1 KB
.POT file containing the plugin strings in English
πŸ“Œ WP Telegram
πŸ–‹ Version 1.5.4

πŸ’‘Added Italian and Arabic Translation, thanks to the translators
πŸ’‘Fixed the HTML parsing issue when using Content before Read More tag as Excerpt Source
πŸ’‘Added hooks before and after sending the message Translation
πŸ’‘Added {post_date} and {post_date_gmt} macros to be used in Message Template

NOTE: You can also contribute in translating the plugin into your local language. Join @WPTelegramChat to discuss

Update the plugin
🌐 https://wordpress.org/plugins/wptelegram/
Hello guys,
If you have any simple feature requests or any suggestions for WP Telegram, you can send them to our support account @WPTelegramSupport.
πŸ“Œ WP Telegram
πŸ–‹ Version 1.5.6

πŸ’‘ Added German translation. Thanks to Muffin
πŸ’‘ Fixed post_date format and localization issue.
πŸ’‘ Fixed shortcode issue in post_content
πŸ’‘ Improved processing of post_content and post_excerpt
πŸ’‘ Added option to choose the way consecutive messages are sent
πŸ’‘ Fixed caption issue when sending image after the text
πŸ’‘ Improved plugin strings for easy translations
πŸ’‘ Bug fixes and performance improvements

NOTE: You can also contribute in translating the plugin into your local language. Join @WPTelegramChat to discuss

Update the plugin
🌐 https://wordpress.org/plugins/wptelegram/
Important Official Info:
πŸ‘‰ @WPTelegramChat
Public group chat for help regarding plugin setup, discussing issues, feature requests and plugin translations

πŸ‘‰ @WPTelegramSupport
Private Support Account for any special requirements or on demand customisation requests.

πŸ‘‰ wptelegram.com
For documentation, useful code snippets and Knowledge Base etc.
(Coming soon)

Plugin URL:
🌐 https://wordpress.org/plugins/wptelegram/
πŸ“’ NEW Major Release πŸ“’

πŸ“Œ WP Telegram
πŸ–‹ Version 1.6.0

πŸ’‘ Total revamp of the notification sending mechanism
πŸ’‘ Allow users to receive email notifications on Telegram
πŸ’‘ Added compatibility with every plugin that uses wp_mail() to send emails
πŸ’‘ Fixed bugs in notification processing

Please update the plugin
🌐 https://wordpress.org/plugins/wptelegram/
If you use the new User Notifications feature of WP Telegram, please provide us your valuable feedback at @WPTelegramSupport 😊

If it's used by many people, we may release this notification feature as a separate small plugin.
Many users ask that they want to send categories as #hashtags instead of separated by vertical bar.
If you want the same, you can add this code at the end of functions.php of your active theme.
Note: If there is ?> at the end, then place the code before that



add_filter( 'wptelegram_post_categories', 'wptelegram_post_categories', 10, 1 );
function wptelegram_post_categories( $string ) {
if ( ! empty( $string ) ) {
$string = '#' . str_replace( '|', ' #', $string );
}
return $string;
}