Apologies, I've been poking around in the docs and not found the solution...
How do I remove the RSS Feed link from the footer?
Any help/advice gratefully accepted...
You'll have to pull out this line from _includes/footer.html
<li><a href="{% if site.atom_feed.path %}{{ site.atom_feed.path }}{% else %}{{ '/feed.xml' | relative_url }}{% endif %}"><i class="fas fa-fw fa-rss-square" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].feed_label | default: "Feed" }}</a></li>
https://github.com/mmistakes/minimal-mistakes/blob/master/_includes/footer.html#L21
Star! 馃 Many thanks, works like a charm...
could this be made an config option?
How would this work if I use the remote theme?
@stefanbschneider It works the same way as gem based theme. Copy _includes/footer.html to your local repo, make whatever changes you need.
Local copies of _includes, _layouts, etc. override those in the theme. There's more documentation on this at the official Jekyll docs.
The fix works like a charm, but now disables my email link in the both the footer and sidebar.
Most helpful comment
could this be made an config option?