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.
If you want the existing users to connect their accounts to Telegram for notifications etc. then they can login and then you can display the login button to them by this code:
add_filter( 'wptelegram_login_show_if_user_is', 'wptelegram_login_show_if_user_is' );
function wptelegram_login_show_if_user_is( $value ) {
/**
* Possible values:
* "logged_out", "logged_in", or a user role "subscriber","author" etc.
*/
return ''; // empty value means visible to all
}
WP Telegram
If you want the existing users to connect their accounts to Telegram for notifications etc. then they can login and then you can display the login button to them by this code: add_filter( 'wptelegram_login_show_if_user_is', 'wptelegram_login_show_if_user_is'β¦
You can now remove that code and use the built in option or shortcode attribute π
Hello guys!
If you are facing the timeout issues when sending the posts to Telegram, don't worry as it's not the problem at your end.
There has been some problem with the Telegram server from last few hours - people are not able to sign in, download or upload images, join channels or groups etc.
They seem to have fixed it :)
If you are facing the timeout issues when sending the posts to Telegram, don't worry as it's not the problem at your end.
There has been some problem with the Telegram server from last few hours - people are not able to sign in, download or upload images, join channels or groups etc.
They seem to have fixed it :)
Hello guys!
We have released an update to WP Telegram to resolve the issue of Connection Timeout - an error notice seen by many users. Please update and let us know if you still have any issues, we will be more than happy to help you π
We are dedicated to provide full support to the users π
Don't forget to write a review at https://wordpress.org/support/plugin/wptelegram/reviews/#new-post
We have released an update to WP Telegram to resolve the issue of Connection Timeout - an error notice seen by many users. Please update and let us know if you still have any issues, we will be more than happy to help you π
We are dedicated to provide full support to the users π
Don't forget to write a review at https://wordpress.org/support/plugin/wptelegram/reviews/#new-post
In the wake of Russia's ban on Telegram, we have added the explicit support for proxy in WP Telegram.
The proxy is not enabled by default. You will need to add this one-line code to your active theme's functions.php
Note: It can be used by the users from any other country where Telegram is banned e.g Iran
The proxy is not enabled by default. You will need to add this one-line code to your active theme's functions.php
Note: It can be used by the users from any other country where Telegram is banned e.g Iran
add_filter( 'wptelegram_bot_api_use_proxy', '__return_true' );