Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
How can I change the link for the header logo.
Is there a way to change the link for the header logo? I am using the forum in a site, I would like to have the header logo go to the website's default page when clicked instead of the forum default.
0
Best Answer
-
Stewartiee New
Yes you can. If you have a theme already check if it has a default.master.php, if it doesn't copy it from applications/dashboard/views/default.master.php into your theme's folder (/themes/YOURTHEME/).
Then edit that file and look for:
<a class="Title" href="<?php echo Url('/'); ?>"><span><?php echo Gdn_Theme::Logo(); ?></span></a>
The simply change the href to point to your website.
0
Answers
Yes you can. If you have a theme already check if it has a default.master.php, if it doesn't copy it from applications/dashboard/views/default.master.php into your theme's folder (/themes/YOURTHEME/).
Then edit that file and look for:
<a class="Title" href="<?php echo Url('/'); ?>"><span><?php echo Gdn_Theme::Logo(); ?></span></a>
The simply change the href to point to your website.
Thanks so much for this. Just what i needed,