Remove Conversation Actions

Remove Conversation Actions 1.5

No permission to download

AndyB

Well-known member
AndyB submitted a new resource:

Remove Conversation Actions - Removes conversation actions.

Description:

Removes conversation actions.

The default XenForo code has six conversation actions. These actions are shown after selecting one or more conversations in the Show All Conversation view.

(default actions)

View attachment 61384

This add-on will simplify this list and show only two options.

(actions after add-on is installed)

View attachment 61385


Modifies the code in the following template:
  • conversation_view
Requirements:...

Read more about this resource...
 
What benefit does limiting what users can do en masse for conversations bring to a website?
 
I would remove the options completely. Why would a user need to leave a conversation? If someone bothers him, he can use the ignore function. Somewhat I am reminded of this:
Posting Rules
You may not post new threads
You may post replies
You may post attachments
You may edit your posts
...
 
I leave conversations regularly, I'm included in a plethora of conversations I don't need to be in and it helps me keep what I do need clean.
 
Imho you should leave the options "Mark Conversations Read/Unread" because those are useful core features of every messaging system i.e. emails, tickets and so. Btw if you're removing the Star/Unstar feature you should also prevent conversations from being starred/unstarred when viewing an individual conversation by removing the Star/Unstar Conversation link.
 
There is a hardcoded phrase on your add-on, line 97:
Code:
<option value="leave">Leave Conversations</option>

Should be:
Code:
<option value="leave">{xen:phrase leave_conversations}</option>
 
Top Bottom