1

We have configured an intranet Fogbugz wiki so that anonymous users can read it. We have also configured DNS and IIS so that the following two URLs resolve to the same place:

http://fogbugz/default.asp?W17

http://forward3/default.asp?W17

The http://fogbugz/ URL is where in house developers use Fogbugz awesomeness. We are the only ones that use this, end users don't have Fogbugz licenses.

The http://forward3/ URL is where end users get help documentation. Every now and then a user calls us because they try to use the following in the upper right hand corner of the wiki:

(Not logged on) Log On

Is there a way to remove this from http://forward3/default.asp?W17 ?

flag

1 Answer

2

Probably using a BugMonkey script. Something like the following should work.

if (window.location.href.indexOf('forward3') > -1)
    $('#navTop').hide();
link|flag
You can also do this by placing <script>$('#navTop').hide();</script> directly into the wiki template. In this manner, the modification would be bound to the wiki rather than the site. – Jude Allred Dec 17 2010 at 18:58

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.