> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://help.unicornplatform.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# How to open blog posts in the same tab


1. Copy the following code:

```
<script>
document.addEventListener('DOMContentLoaded', () => {
  const updateLinks = () => {
    document.querySelectorAll('a.js-post-item.post-item[target="_blank"]').forEach(link => {
      link.setAttribute('target', '_self');
    });
  };
  updateLinks();
  const observer = new MutationObserver(updateLinks);
  observer.observe(document.body, { childList: true, subtree: true });
});
</script>
```


2. Add it to **Blog settings -> Blog home page -> </body> code**

![](https://storage.crisp.chat/users/helpdesk/website/-/7/e/7/8/7e782a40c0560c00/screenshot-2025-07-16-081812_1j6u290.png)

3. Save the changes, and you're all set!
