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.
[Solved] Change Title Link or Add Link
I would either like to change the link in the title to go back to the homepage (not a vanilla forum) or add a Home button to the title page. I cannot figure out where to change this in the code.
0
Comments
I found your post, while searching for an answer myself. I know this is a really old post, but i fixed it by adding this to my theme:
$this->Menu->AddLink('Home', T('Home'), '../');
I added it in the default.master.php file, right after
if($this->Menu) {
I hope it might help someone visiting from google.
Update:
I also changed the line:
<h1><a class="Title" href="<?php echo Url('/'); ?>"><span><?php echo Gdn_Theme::Logo(); ?></span></a></h1>
to
<h1><a class="Title" href="<?php echo Url('../'); ?>"><span><?php echo Gdn_Theme::Logo(); ?></span></a></h1>
The thing changed is the
<?php echo Url('/'); ?>