gnappo
Forum Replies Created
-
Forum: Plugins
In reply to: [Telegram Bot & Channel] send email and get phone numberI see that telegram bot api doesn’t allow to retrieve phone number, but I can ask to the user to insert it, how can I grab the conversation (from a point to another) and send an email?
Forum: Plugins
In reply to: [Telegram Bot & Channel] send email and get phone numberHey can you help me ? ??
Forum: Plugins
In reply to: [Plugin Organizer] Plugin administrationthank you
??Forum: Plugins
In reply to: [Telegram Bot & Channel] embed a command in text fieldok thank you
Forum: Plugins
In reply to: [Telegram Bot & Channel] get_the_timethank you
Forum: Plugins
In reply to: [Telegram Bot & Channel] Insert icon in button keyboardHi the wp config is set in this way
/** Database Charset to use in creating database tables. */ define('DB_CHARSET', 'utf8'); /** The Database Collate type. Don't change this if in doubt. */ define('DB_COLLATE', '');
on phpymyadmin in general settings i have this:
Server connection collation = UTF8_general_ciForum: Plugins
In reply to: [Telegram Bot & Channel] wp recent postthanks a lot
Forum: Plugins
In reply to: [Telegram Bot & Channel] wp recent postadd_action('telegram_parse','telegramcustom_parse', 10, 2); function telegramcustom_parse( $telegram_user_id, $text ) { $plugin_post_id = telegram_getid( $telegram_user_id ); if ( !$plugin_post_id ) { return; } if ( $text == '/latestnews') { ?> <ul><?php $args = array( 'numberposts' => '4' ); $recent_posts = wp_get_recent_posts($args); foreach( $recent_posts as $recent ){ echo '<li><a href="' . get_permalink($recent["ID"]) . '">' . $recent["post_title"].'</a> </li> '; } wp_reset_query(); ?></ul> <?php telegram_sendmessage( $telegram_user_id, get_the_title($recent_posts)); } return; } ?>
Forum: Plugins
In reply to: [Telegram Bot & Channel] Insert icon in button keyboardif i put the emoji in the message text field when i save it i obtain the text + 😀 and this is encoded perfectly as an emoji.
but if i put in the standard keyboard template is not encoded.
Forum: Plugins
In reply to: [Telegram Bot & Channel] Insert icon in button keyboardof course i have tried but appears always the code and not the emoji, i have tried also to paste ?? into keyboard standard template but when you save it the emoji disappear in the keyboard standard template field.
How i can do?
Forum: Plugins
In reply to: [Plugin Organizer] wildcard permalinkok thank you for the suggest. ??
Forum: Plugins
In reply to: [Plugin Organizer] wildcard permalinkok i have tried creating the group as u suggested, so the issue of the ID of the gravity form https://mydomain.com/wp-admin/admin.php?page=gf_entries&id=63 is solved, how i can create a similar things for single entry user that signed through gravity form?
i mean to have the same plugin group activated on url like this
https://mydomain.com/wp-admin/admin.php?page=gf_entries&view=entry&id=63&lid=2047&orderby=ASC&filter&paged=1&pos=0&field_id&operator where the bold part dynamically change for each entry and i can not insert an URL for each single entry.
How i can do that?
Forum: Plugins
In reply to: [Plugin Organizer] wildcard permalinkok i will try and thanks 4 the “workaround” suggestion
ok thanks now it works perfectly again
Hi, is there a way to have the drop down populated only by custom post in draft status?
Thanks again
Jack