Themes
Some Free
Free Only
- 15 Best Open-Source Free Ghost Blog Themes For 2025
- https://electronthemes.com/blog/best-open-source-free-ghost-blog-themes
- Repository search results ยท GitHub
1. Integration
Matomo
- Official Ghost + Matomo Integration
- GitHub - matomo-org/matomo: Empowering People Ethically ๐ โ Matomo is hiring! Join us โ https://matomo.org/jobs Matomo is the leading open-source alternative to Google Analytics, giving you complete control and built-in privacy. Easily collect, visualise, and analyse data from websites & apps. Star us on GitHub โญ๏ธ โ Pull Requests welcome!
2. Tips
Powered By
If you need to remove "Powered by", there are 3 places. Reference:
Portal
Inject into Site Footer
<script src="https://example.com/remove-ghost-in-portal.min.js"></script>
remove-ghost-in-portal.min.js
function handleMutations(e){e.forEach(function(e){"childList"===e.type&&e.addedNodes.length&&e.addedNodes.forEach(e=>{if(e.nodeType===Node.ELEMENT_NODE){let n=e.querySelector('iframe[data-testid="portal-popup-frame"]');n&&(n.onload=function(){var e=n.contentWindow.document,t=document.createElement("style");t.textContent=".gh-portal-powered { display: none; }",e.head.appendChild(t),n.onload=null})}})})}let parentElement=document.querySelector("body"),observer=new MutationObserver(handleMutations),config={childList:!0,subtree:!0};observer.observe(parentElement,config);
//# sourceMappingURL=remove-ghost-in-portal.min.js.map
Footer
Inject into Site Header
<style>
.gh-footer-copyright {
display: none;
}
</style>
Note browser to get the correct string to replace ".gh-footer-copyright" above.
Newsletter
Just go to each newsletter to turn in off.