Can I remove "Powered by n8n" from the Chat Widget as a paying user?

Hey awesome n8n team :waving_hand:

I’m a paying customer on n8n.cloud, and I’ve successfully embedded the Chat Widget on my WordPress site. It works beautifully!

However, I’d like to remove the “Powered by n8n” message that appears at the bottom of the chat, in order to keep my site fully on-brand.

  • Is it possible to remove or hide it as a paying customer?
  • If so, is there a config or setting to control that?
  • If not, is this planned for future updates?

Thanks in advance! You’re doing an amazing job :clap:
Avior

Hello @aviorwork Welcome to n8n :n8n: community :tada:

It appears that the “Powered by n8n” footer isn’t an option you can simply disable from the settings—its appearance is tied to the way the widget is designed. You can see how it’s implemented in the following file:

If you want to remove or customize that footer completely to keep your site fully on-brand, you would need to create your own custom chat widget implementation or use the n8n chat package with your custom edits.


If this answers your question, please mark the reply as the solution :white_check_mark::pray:t2:

1 Like

Thanks again for the detailed reply and for pointing me to the source file in the repo — really helpful :pray:

I just have a quick follow-up:

Yesterday, I actually managed to get the widget working without the “Powered by n8n” footer, without having to build a custom version of the chat widget.

Unfortunately, I’ve since changed the code and can’t remember what exactly I did that made it work :sweat_smile:

So before I go down the route of building my own custom chat bundle, I just wanted to ask:

:point_right: Is there any way to hide or override the footer using styling, JS, or a config option — without rebuilding the widget from source?

If there’s no official way, that’s fine — I’ll go with the custom version. Just wanted to double-check since I was able to do it before, and I’m hoping to avoid maintaining a custom build long-term if possible.

Thanks again for your support,
Avior

So I found an easy hack for this.

The chat widget has allows you to overwrite this for i18n purposes. So in the createChat function you can have

   i18n: {
        en: {
          footer: 'Developed by Awesome Developer 😎',
        },
      },

It’s limited to just text so you can have links but I found it quite handy.

Not sure if someone has a better fix.

1 Like