# Voice Call button

**URL:** https://forums.rocket.chat/t/voice-call-button/22709
**Category:** Community Support
**Created:** [January 28, 2026, 3:21pm UTC](https://forums.rocket.chat/t/voice-call-button/22709 "2026-01-28T15:21:48Z")
**Posts on this page:** 1
**Showing post:** 4

<div class="post-metadata">

### Author: ![reetp](https://sea1.discourse-cdn.com/flex021/user_avatar/forums.rocket.chat/reetp/32/5546_2.png) [@reetp](https://forums.rocket.chat/u/reetp)
#### Post date: [January 29, 2026, 12:14pm UTC](https://forums.rocket.chat/t/voice-call-button/22709/4 "2026-01-29T12:14:11Z")

</div>

> [@moell9](#):
>
> Of course I tried it out. Otherwise I wouldn’t ask again.

So did you actually have a look WHY it didn’t work? You haven’t made the slightest effort to help yourself. Why should anyone help you?

I had a look and I am clueless and useless with CSS but it only took me 5 minutes to figure it out.

They removed this at some point:

`data-qa-id=“ToolBoxAction-phone” data-toolbox=“1”`

So this code will never find the css

`button[data-toolbox="1"][data-qa-id="ToolBoxAction-phone"] {`  
` display: none`_`!important`_`;`  
`}`

So with a quick browser inspector we can see it now says:

`<button type=“button” title=“Voice call Some User”`

So all you need to do is find some CSS that searches for “Title” and wording that starts with “Voice call”

Second link on a search reveals this:

> **[Mastering CSS Use of Partial Text Parameters](https://www.tutorialpedia.org/blog/css-use-partial-text-parameters/)**
>
> In the world of web development, CSS (Cascading Style Sheets) is a powerful tool for styling web pages. One of the lesser-known but highly useful features is the ability to use partial text parameters. This allows developers to target elements based...

And so you can do something vaguely like this:

`button[title^=“Voice call”]{`  
` display: none !important;`  
`}`

Probably needs refinement but seems to work.

A lesson in open source is to start by trying to help yourself.

I was in two minds whether to actually post a solution because I don’t have much time for people who just want answers on a plate and make no attempt to better themselves or learn.

If you had posted your effort at some CSS you would increase your chances of someone helping.

I happen to be in a generous mood today so posted it, mainly for others. It is open source. My way of giving back to a community.

It took me longer to upgrade a test server to check this. It took me longer to type this post.

With minimum effort you could have done this yourself.

My suggestion is spend some time reading, and helping others in return.

If you have refinements please post them accordingly.

---

_[View the full topic](https://forums.rocket.chat/t/voice-call-button/22709)._
