I am using ghost local installation. Casper theme.
FYI - I am running the latest version
- What’s your URL? currently not hosted. its on localhost.
- What version of Ghost are you using? Version: 5.82.11
Question: how to change the title link ( in this case text “Ghost” )
Thanks!
That’s set as the site URL all the time. Two options to change it:
-
Change the theme code from the theme files:
Casper/default.hbs at 331257ea2976422fc4a7537bef07bb0c3ef2bd4d · TryGhost/Casper · GitHub
-
From code injection > site footer:
<script>
document.querySelector('a.gh-head-logo').setAttribute('href', 'https://your_link_here')
</script>
1 Like
Thanks!, From code injection > site footer worked!