Portal Signup Button
Thesis theme comes with customized version of Sign Up button. It is placed on all pages in the bottom left in sidebar and in the header of Homepage.
Change custom portal button
To change text of the button or hide it completely follow these steps:
- Log in to Ghost admin
- Go to Settings → Membership → Portal settings
- Click Customize → Look & feel
- Toggle the Show portal button switch to hide button
- Change button text in Signup button text setting
- Click Save
Restore standard Ghost Sign Up button
Code Injection is required to add custom CSS.
Standard Ghost button is hidden using CSS, but you can restore it with custom CSS if you want.
<style>
#ghost-portal-root > iframe {
display: block !important;
}
</style>