Skip to content

Instantly share code, notes, and snippets.

@dodeja
Created March 6, 2025 20:53
Show Gist options
  • Save dodeja/0e812daa7db12d8e72ba5111667a421e to your computer and use it in GitHub Desktop.
Save dodeja/0e812daa7db12d8e72ba5111667a421e to your computer and use it in GitHub Desktop.
Remove Powered by Pylon in help/knowledge base site

Remove Powered By Pylon on your Pylon knowledgebase

Add the following script tage in your knowledgebase settings https://kb.help.usepylon.com/articles/6944132996-how-to-add-custom-css-to-your-knowledge-base

<script>
// remove powered by link. 
(function(){function r(){var e=document.querySelector('a[href="https://www.usepylon.com/"]');e&&e.remove()} new MutationObserver(r).observe(document.documentElement,{childList:!0,subtree:!0}); setInterval(r,2000)})();

// Add other modifications below

</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment