How do I change the link that the logo points to? - FogBugz Knowledge Exchange most recent 30 from http://fogbugz.stackexchange.com 2013-05-21T19:48:46Z http://fogbugz.stackexchange.com/feeds/question/795 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://fogbugz.stackexchange.com/questions/795/how-do-i-change-the-link-that-the-logo-points-to How do I change the link that the logo points to? Rich Armstrong 2009-11-20T20:17:40Z 2012-09-26T07:28:28Z <p>The logo points to the pgOldMainMenu, which is... well... old. I know how to change the logo image. How do I change where this points?</p> http://fogbugz.stackexchange.com/questions/795/how-do-i-change-the-link-that-the-logo-points-to/796#796 Answer by Rich Armstrong for How do I change the link that the logo points to? Rich Armstrong 2009-11-20T20:19:18Z 2012-09-26T07:28:28Z <p>You can do this by changing the URL with the <a href="http://www.fogcreek.com/FogBugz/plugins/plugin.aspx?ixPlugin=16" rel="nofollow">BugMonkey</a> plug-in.</p> <p>I was able to change the link to go to the same place as "List Cases" by using this customization:</p> <pre><code>name: Change site logo link description: Changes the site logo so that it links to the case list author: Rich Armstrong version: 1.0.0.0 minApi: 1.0 js: $("#containerLogo a").attr("href","default.asp?pg=pgList"); </code></pre> <p>If you prefer that it takes you to a particular saved filter, replace <code>default.asp?pg=pgList</code> with the url of the filter.</p>