Does anyone know how to remove the RSS link on the Wave theme?

I want to keep the Ghost branding but I’d like to remove the RSS. Does anyone know the coding to remove it? I don’t have anything entered in the RSS link area for the theme, but it shows up anyway. Thanks in advance!

Hi!

You should be able to hide the RSS link by adding this bit of code to SettingsCode InjectionSite Header:

<style>
.subscribe-link.rss {
  display: none;
}
</style>

Keep in mind that some visitors may miss having that link, though!

1 Like

Wow, that was fast! Thank you so much for your help!

1 Like