Change subscribe button text (top right)

Hello,

How to change copy of the subscribe button in the top right? I’m using default Casper theme.

I have changed the copy of Subscribe button in the bottom right via Ghost settings, but can’t find it for the button in navigation.

You’ll need to download the theme, edit this line

<a class="gh-head-button" href="#/portal/signup">Subscribe</a>

in the default.hbs file and then reupload your modified version of the theme.

cause i prefer not to touch original theme i resolved this that way, adding this code to footer injection.

<script>
    document.querySelector('[data-portal="signup"]').innerText = "Souscrire"
</script>
4 Likes