You can change where you navigate to if you click on your logo in dokuwiki.
You need to find the tpl_header.php file in your chosen theme/template. Open it and then find the code:
1 2 3 4 5 |
tpl_link( wl(), '<img src="'.$logo.'" '.$logoSize[3].' alt="" /> <span>'.$conf['title'].'</span>', 'accesskey="h" title="[H]"' ); |
1 2 3 4 5 |
tpl_link( "https://YourWebsite.com", '<img src="'.$logo.'" '.$logoSize[3].' alt="" /> <span>'.$conf['title'].'</span>', 'accesskey="h" title="[H]"' ); |
Leave a Reply