Hide buttons: SPAM, REPLY, FORWARD - FogBugz Knowledge Exchange most recent 30 from http://fogbugz.stackexchange.com2013-05-22T21:44:21Zhttp://fogbugz.stackexchange.com/feeds/question/10826http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://fogbugz.stackexchange.com/questions/10826/hide-buttons-spam-reply-forwardHide buttons: SPAM, REPLY, FORWARDMikeC2012-09-28T02:15:51Z2012-10-01T13:56:12Z
<p>Hi</p>
<p>Is there a script to hide these buttons? We don't use them and new users find it confusing, specially when "Assign" and "Reply" seem closely related.</p>
<p>Thanks
Mike</p>
http://fogbugz.stackexchange.com/questions/10826/hide-buttons-spam-reply-forward/10828#10828Answer by Michel de Ruiter for Hide buttons: SPAM, REPLY, FORWARDMichel de Ruiter2012-09-28T07:39:13Z2012-10-01T13:56:12Z<p>You mean you never get mail, aside from FogBugz users?</p>
<p>The following <a href="http://fogbugz.stackexchange.com/questions/5520" rel="nofollow">BugMonkey customization</a> should get you what you're after:</p>
<pre><code>name: Hide Spam, Reply, and Forward buttons
description: Hides all Spam, Reply and Forward buttons on the list page and case page to avoid confusion
author: Michel de Ruiter & Dane Bertram
version: 1.0.0.1
js:
// give the first visible action button at the bottom of the list page (after removing spam & reply) rounded corners
$('#idActionP a:visible:first').addClass('actionButtonLeft');
css:
/* hide the spam, reply, and forward buttons on the case page */
.buttonbar .spam, .buttonbar .reply, .buttonbar .forward {
display: none !important;
}
/* hide the spam and reply buttons on the list page */
#spam, #reply {
display: none;
}
</code></pre>
<p>You might <a href="http://fogbugz.stackexchange.com/questions/6371/bugmonkey-2-0-css-and-browser-cache" rel="nofollow">need</a> to clear you browser cache to get it to work.</p>