Hi, I currently have the “journal” theme, I would like to remove the powered by ghost, but I don’t know anything about development.
What could I do, is there any line of code that I can paste in “code injection”?
Thank you all very much.
Hi, I currently have the “journal” theme, I would like to remove the powered by ghost, but I don’t know anything about development.
What could I do, is there any line of code that I can paste in “code injection”?
Thank you all very much.
Go to Settings → Design → Site-wide
Then scroll down, you should be able to see and edit the Footer Text.
there is no option for that
If it’s not available in the Design section of the Admin dashboard, it is probably hardcoded in a file, like in my theme. Try to look for footer.hbs
file in partials
folder of the theme if there’s one, or in some other folder.
Looking at the theme, it’s hardcoded in the default template.
If it’s only a visual thing that you care about then you can add some code injection to hide it:
<style>
.gh-powered-by { display: none; }
</style>
Otherwise if you want to completely remove it you’d need to edit the theme files.
this worked great but to the main point, if we are paying for the hosting then we should have the option to remove it across all themes, native to the site.
having to manually inject code into every page, post, and homepage is not ideal.
thanks for the code, but please make this an easier option down the line. please.