disable the keyboard and enable the voice command only

What I found is only how to disable the keyboard, but in this case, it also disables voice input. What I want is to disable the keyboard while keeping the microphone available for voice commands.

could you help me in this ?

Didn't find what you were looking for?

New post
Was this post helpful?
2 out of 2 found this helpful

Comments

1 comment

  • I use this CSS to hide the keyboard text area 

    [data-cognigy-webchat-root] [data-cognigy-webchat].webchat .webchat-input-message-input{
       
           display: none;
        
    }

    and use this CSS to hide the input voice form 

    [data-cognigy-webchat-root] [data-cognigy-webchat].webchat .cognigy-webchat-3e9gn1{
        
              display: none;
        
    }

     

    thanks

     

    1

Please sign in to leave a comment.