π 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
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/
π 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 TemplateNOTE: You can also contribute in translating the plugin into your local language. Join @WPTelegramChat to discuss
Update the plugin
π https://wordpress.org/plugins/wptelegram/
WordPress.org
WP Telegram (Auto Post and Notifications)
Integrate your WordPress site perfectly with Telegram with full control.
Hello guys,
If you have any simple feature requests or any suggestions for WP Telegram, you can send them to our support account @WPTelegramSupport.
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
π‘ Fixed shortcode issue in
π‘ Improved processing of
π‘ 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/
π 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/
WordPress.org
WP Telegram (Auto Post and Notifications)
Integrate your WordPress site perfectly with Telegram with full control.
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/
π @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
π‘ Fixed bugs in notification processing
Please update the plugin
π https://wordpress.org/plugins/wptelegram/
π 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/
WordPress.org
WP Telegram (Auto Post and Notifications)
Integrate your WordPress site perfectly with Telegram with full control.
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.
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
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 thatadd_filter( 'wptelegram_post_categories', 'wptelegram_post_categories', 10, 1 );
function wptelegram_post_categories( $string ) {
if ( ! empty( $string ) ) {
$string = '#' . str_replace( '|', ' #', $string );
}
return $string;
}
We will be regularly sharing some useful code snippets. So keep watching this space... π
Recently some users reported that the photo is not being sent for its file size being more than 5mb. This is because WP Telgram by default passes the URL of the photo to Telegram which has a limit of 5mb.
If you are facing the same issue and the file size of the photo is more than 5mb, you can add this code to
Note: The maximum file size limit (set by Telegram) for photo is 10mb
If you are facing the same issue and the file size of the photo is more than 5mb, you can add this code to
functions.php
of your active theme. Make sure you are on the latest version of the plugin.Note: The maximum file size limit (set by Telegram) for photo is 10mb
// upload the file instead of passing the url
add_filter( 'wptelegram_send_image_by_url', '__return_false' );
A few users reported that the posts are not sent when using the new Gutenberg Editor.
Just add this code to
Note: Make sure that you are using the latest version (1.6.3) of WP Telegram
Just add this code to
functions.php
of your active theme to make it work.Note: Make sure that you are using the latest version (1.6.3) of WP Telegram
// Not using the Classic Editor
add_filter( 'wptelegram_classic_post_edit_screen', '__return_false' );
Hello guys,
If you love WP Telegram and would like to translate it in your local language, you can do so here:
https://translate.wordpress.org/projects/wp-plugins/wptelegram
If you wish to be a Project Translation Editor (PTE) on wordpress.org for WP Telegram, please send your WordPress.org username to @WPTelegramSupport
If you love WP Telegram and would like to translate it in your local language, you can do so here:
https://translate.wordpress.org/projects/wp-plugins/wptelegram
If you wish to be a Project Translation Editor (PTE) on wordpress.org for WP Telegram, please send your WordPress.org username to @WPTelegramSupport
Hello everyone,
With the yesterday's update to Telegram Bot API, you can now use Text Formatting in image caption also. https://core.telegram.org/bots/api#february-13-2018
If you want to use it in image captions, then
> Update WP Telegram to the latest version (1.6.5)
> Set Parse Mode to
Note: Image caption formatting on Telegram is available on the latest version of Telegram Mobile Apps as of now. This update for Desktop Apps has not been released yet.
With the yesterday's update to Telegram Bot API, you can now use Text Formatting in image caption also. https://core.telegram.org/bots/api#february-13-2018
If you want to use it in image captions, then
> Update WP Telegram to the latest version (1.6.5)
> Set Parse Mode to
HTML
or Markdown
and use the appropriate markup.Note: Image caption formatting on Telegram is available on the latest version of Telegram Mobile Apps as of now. This update for Desktop Apps has not been released yet.
core.telegram.org
Telegram Bot API
The Bot API is an HTTP-based interface created for developers keen on building bots for Telegram. To learn how to createβ¦
Hi folks! Be ready for a surprise... π
Coming soon, a new plugin that we had promised long time ago... βΊοΈ
It will be the first such plugin for WordPress π
Keep watching this thread π
Coming soon, a new plugin that we had promised long time ago... βΊοΈ
It will be the first such plugin for WordPress π
Keep watching this thread π
Finally the wait is over! π
We announce the release of our new WordPress plugin...
You surely use a Facebook and Twitter Feed WordPress Widget, right? π
What about the Feed of a Telegram Channel in a Widget?? π
Yes! That's what the new plugin will allow you to do!
What are you wating for?? π€
ππ» Display the Telegram Public Channel or Group Feed in a widget or anywhere using a shortcode.
https://wordpress.org/plugins/wptelegram-widget/
We announce the release of our new WordPress plugin...
You surely use a Facebook and Twitter Feed WordPress Widget, right? π
What about the Feed of a Telegram Channel in a Widget?? π
Yes! That's what the new plugin will allow you to do!
What are you wating for?? π€
ππ» Display the Telegram Public Channel or Group Feed in a widget or anywhere using a shortcode.
https://wordpress.org/plugins/wptelegram-widget/
WordPress.org
WP Telegram Widget and Join Link
Display the Telegram Public Channel or Group Feed in a WordPress widget or anywhere you want using a simple shortcode.
Hello everyone. It seems that some users are facing issues with WP Telegram Widget plugin and it doesn't show up on front-end.
Please check if you are using a caching plugin and try to check the way it handles JS (JavaScript) in its settings.
You can first try by deactivating the Caching plugin temporarily.
Please check if you are using a caching plugin and try to check the way it handles JS (JavaScript) in its settings.
You can first try by deactivating the Caching plugin temporarily.
Hi Everyone,
In case you want to customize the widget template used by WP Telegram Widget, follow these steps:
1. Start the FTP connection to your website
2. Goto
3. Create a directory named
4. Copy
5. Make your changes and enjoy :)
In case you want to customize the widget template used by WP Telegram Widget, follow these steps:
1. Start the FTP connection to your website
2. Goto
"/wp-content/themes"
3. Create a directory named
"wptelegram-widget"
in your child or active theme.4. Copy
"widget-view.php"
from "/wp-content/plugins/wptelegram-widget/public/partials"
into the directory created above5. Make your changes and enjoy :)
Forwarded from α΄α΄Ι΄α΄’α΄α΄Κ α΄‘α΄Ι΄Ιͺ
We have been providing full support to so many users and still we have only 16 reviews π
Guys! Write something here π
https://wordpress.org/support/plugin/wptelegram/reviews/#new-post
Guys! Write something here π
https://wordpress.org/support/plugin/wptelegram/reviews/#new-post
Finally the wait is over! π
We announce the release of our new WordPress plugin...
Do you use Social Sign in Plugins?? What about sign in with Telegram?
Yes! That's what the new plugin will allow you to do!
What are you wating for?? π€
ππ» Let the users login to your website with their Telegram and make it simple for them to get connected and let them receive their email notifications on Telegram.
https://wordpress.org/plugins/wptelegram-login/
We announce the release of our new WordPress plugin...
Do you use Social Sign in Plugins?? What about sign in with Telegram?
Yes! That's what the new plugin will allow you to do!
What are you wating for?? π€
ππ» Let the users login to your website with their Telegram and make it simple for them to get connected and let them receive their email notifications on Telegram.
https://wordpress.org/plugins/wptelegram-login/
WordPress.org
WP Telegram Login & Register
Let your users login and register via Telegram, making it easier form them to get started on your website.