All, this is not a long term fix and is a bit ugly but works for me. Hopefully it helps someone else out as well. I am extremely new to coding so please be kind 🙂 haha.
I have this in my extend.php for an admin (home) link, instead of clicking the logo and being sent to the home page. It saves a little time by allowing me not to have to scroll up to the dashboard link each time.
<?php
/*
* This file is part of Flarum.
*
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
*/
use Flarum\Extend;
use Flarum\Frontend\Document;
use Flarum\Frontend\Assets;
use Flarum\Frontend\Compiler\Source\SourceCollector;
return [
(new Extend\Frontend('admin'))
->content(function (Document $document) {
$document->head[] = '<h3><a href="./admin#"> Admin Home</a></h3>';
})
];