Change Copyright in Journal Theme

Ah ha! I found another post that covered how to do it with Code Injection (footer):

How to remove the copyright symbol from the footer of journal theme - https://forum.ghost.org/t/how-to-remove-the-copyright-symbol-from-the-footer-of-journal-theme/46744/2

I reverted back to the original Journal theme, then added the following to Code Injection → Footer:

<script>
  document.addEventListener('DOMContentLoaded', function() {
      const copyrightElement = document.querySelector('.gh-copyright');
      if (copyrightElement) {
          copyrightElement.textContent = 'APRS Foundation Inc.';
      }
  });
</script>

That did the trick!!!

I would NEVER have figured that one out. LOL

I searched around and I guess I just didn’t find that document. In fairness, it was around 5:00 AM. :slight_smile: