I’d like to ask what file / lines in the Casper theme files are responsible for the ‘lastest posts * facebook * twitter * ghost’ items that appear at the foot of the website on the right hand side?
you can check on default.hbs
file & the lines are
{{!-- The footer at the very bottom of the screen --}}
<footer class="site-footer outer">
<div class="site-footer-content inner">
<section class="copyright"><a href="{{@site.url}}">{{@site.title}}</a> © {{date format="YYYY"}}</section>
<nav class="site-footer-nav">
<a href="{{@site.url}}">Latest Posts</a>
{{#if @site.facebook}}<a href="{{facebook_url @site.facebook}}" target="_blank" rel="noopener">Facebook</a>{{/if}}
{{#if @site.twitter}}<a href="{{twitter_url @site.twitter}}" target="_blank" rel="noopener">Twitter</a>{{/if}}
<a href="https://ghost.org" target="_blank" rel="noopener">Ghost</a>
</nav>
</div>
</footer>
From 28-39
1 Like
Another way is to use CSS in code-injection
/* Hide the footer link to ghost.org */
.site-footer a[href^=“https://ghost.org”] { display: none; }
1 Like