Can I configure the "More" options in Forum responses?

We are running into situations where moderators are accidentally selecting "Report as abusive" rather than "Verify Answer". 

I would like to rearrange this menu and move the Report option down.  I assume this is in Administration and involves some coding, but I cannot find the option anywhere.   

Has anyone done this, or can you confirm if this is an option?

Parents
No Data
Reply Children
  • Hi . Forum Thread is a bit of a unique case when it comes to its use of the links UI Component , in that its collapsed more links are loaded dynamically from a callback due to how they're calculated. As such, those particular more links are included in that widget's callback-more-start-actions.vm script instead of content-thread-start.vm. So to move the report link, you'd both remove it from content-thread-start.vm as you already did, and then also add the following within callback-more-start-actions.vm, between whichever links you'd like.

    ## Report abuse
    #if ($core_v2_user.IsRegistered($core_v2_user.Accessing.Id))
    	<li class="navigation-list-item">
    		$core_v2_ui.Moderate($thread.ContentId, $thread.GlobalContentTypeId)
    	</li>
    #end