XenForo 2.0 How to Disable Watch button on each Forums

Belinux

Active member
Registered
Joined
Aug 17, 2021
Messages
34
Points
18

Reputation:

How can I disable Watch button available on every forum, I did not found any option in settings still in Xenforo 2.2 version. I want to disable this button because many users click on this button and subscribe to forums for new emails for each new topic which is made in specific desired forum. Because when users use this button and subscribe for any forum it leads to me daily 500+ emails to send through site which is not allowed to me.

Because on site people created 1000+ threads in each forum and we can not afford to send emails in this large number of topics. any help with any template modification or any code to add in extra.css or any addon which can help in this regard.

icEQzJt.png
 

Zer01ne

Collaborate
Collaborate
Registered
Joined
Nov 25, 2022
Messages
679
Points
253

Reputation:

Add this to your extra.less

CSS:
[data-sk-watch="Watch"] {
    display: none !important;
}
 

Belinux

Active member
Registered
Joined
Aug 17, 2021
Messages
34
Points
18

Reputation:

Top