I have a problem. I created a telegram bot under python3 with telepot and I use a custom keyboard.
the problem is that when i press a button, the custom keyboard is hidden by the phone keypad.
is it possible to temporarily lock the custom keyboard open or block the phone keyboard?
I already tested one_time_keyboard and it didn't work.
markupmainmenuadmin = ReplyKeyboardMarkup(keyboard=[["menu 1"],["info 1"],["info 2"],["info 3"],["Admin"]],resize_keyboard = True,one_time_keyboard = True)
[...]
bot.sendMessage(chat_id,str(textdb.get(query.nom == 'MainMenu2').get("text")),disable_web_page_preview=True, reply_markup=markupmainmenuadmin, parse_mode= 'Markdown')
it only happens when you stay on the same keyboard.