Ulugov
Forum Replies Created
-
Hello Pavel.
1. I will try to create a screencast soon.
2. This plugin does not grab the posts, it just querys the posts by date (ASC) and takes the oldest one. And sends it to your telegram channel. This procedure will be repeated according the recurrence you chosen on plugin options. E.g. if you choose period ‘Hourly’, the plugin takes the oldest post by date and sends it to telegram channel. If you set a date on plugin options page e.g. 2015.05.01 the plugin takes the oldest one that published after 2015.05.01 and sends it to telegram channel.
If you publish more than 20 posts a day, the plugin does not care it. It just keeps sending posts one by one.Forum: Plugins
In reply to: [AUS Telegram Channel] How can find Bot TokenPlease, read this article. I hope you will find the answer for your question:
http://anvar.ulugov.uz/aus-telegram-channel-configuration-example/I added a post with screen shots. Please check it. I hope it will help you:
http://anvar.ulugov.uz/aus-telegram-channel-configuration-example/Hello Pavel. Sorry for late answer.
This plugin sends wordpress posts to provided telegram channel.
1. First you have to create a public channel. 2. And than you have to create a bot.
3. Than you have to add your bot as administrator to your channel.
4. And enter the channel username (e.x. @ulugovuz) and your admin bot token that given by @botfather.By the way, if you want to check if plugin works I advice you to use the plugin ‘Advanced cron manager’. After installing it you can find a menu in Tools section. On that page find the ‘aus_telegram_channel…’ Schedule and run it. The post will be seen on your telegram channel.
I hope, the answer was clear. If you have any questions, please write. I’ll do my best to support you.
Thank you for trying my plugin.
Regards.Forum: Plugins
In reply to: [WP DB Driver] PDO plugin, any database ?Hello Marko.
It would be great work if you add suport for postgresql. If you need any help, I would try to help you!
Thanks for the plugin!Forum: Reviews
In reply to: [qTranslate] text area content is not resize after install Qtranslate!!!!!!Thank you! You saved my time.
Forum: Plugins
In reply to: [Contact Form 7] Country list in contact form 7I copied the function in select.php and pasted into function.php and edited as I need.
wpcf7_add_shortcode( ‘select_country’, ‘wpcf7_select_shortcode_handler2’, true );
function wpcf7_select_shortcode_handler2( $tag ) {
…
$values = array(
‘Afghanistan’,
‘Albania’,
‘Algeria’,
…
$labels = $values;
…And added shortcode to contact form:
[select_country country]Maybe it is not best way, but it solved me the problem.