---
title: "Changing Your Logo URL Redirect"
slug: "changing-logo-url-redirect"
updated: 2024-05-24T11:29:29Z
published: 2024-05-24T11:29:29Z
canonical: "help.nexudus.com/changing-logo-url-redirect"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://help.nexudus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Changing Your Logo URL Redirect

Clicking on the logo at the top of every page of your Members Portal redirects users to the home page by default. You can easily change where users are redirected when they click on the logo using a simple code snippet.

All you need is the URL of the page users should land on when they click on your logo.

*For example, your logo can redirect users to your marketing website or a specific page of your Members Portal.*

---

1. Log in to [dashboard.nexudus.com](https://dashboard.nexudus.com/) if you aren't already.
2. Click [**Settings > Web template editor**](https://dashboard.nexudus.com/settings/editor/templates).
3. Click on **app.js**.
4. Add the following code snippet to the file **after** all the file's comments, highlighted in green.

```
var componentDidMount = function(componentName) {
    var url = 'CLIENT_URL_GOES_HERE';
    var anchor = $('a.navbar-brand');
    if(anchor.attr('href') != url) {
        anchor
        .attr('href', url)
        .replaceWith(anchor.clone())
    }
}
```

![image.png](https://cdn.document360.io/4f9a66c7-3dbb-4052-97d8-5439302e1512/Images/Documentation/image%28729%29.png)

1. Remove **CLIENT_URL_GOES_HERE** from the snippet, making sure you don't remove the single quotation mark on either side.

![image.png](https://cdn.document360.io/4f9a66c7-3dbb-4052-97d8-5439302e1512/Images/Documentation/image%28730%29.png)

1. Add your website's full URL address between the two single quotation marks.

![image.png](https://cdn.document360.io/4f9a66c7-3dbb-4052-97d8-5439302e1512/Images/Documentation/image%28731%29.png)

1. Click the **Save** button.

---

All set! Your website's logo should now redirect users to the URL you've added to the code snippet.
