Add-on Looking for a specific Discord plugin

Sprony

New member
I hope this is the right forum for this, but I'm looking for a specific Discord plugin. I saw this on a Xenforo website:

discord_example.webp
Now I've been searching but I only find plugins that fully integrate Discord with Xenforo. I don't want any of that. I just want the blue block as seen on the image displaying my server information and when you click it, you either go to the Discord website or the app opens, nothing more. What plugin do I need for that?
 
I hope this is the right forum for this, but I'm looking for a specific Discord plugin. I saw this on a Xenforo website:

View attachment 298992
Now I've been searching but I only find plugins that fully integrate Discord with Xenforo. I don't want any of that. I just want the blue block as seen on the image displaying my server information and when you click it, you either go to the Discord website or the app opens, nothing more. What plugin do I need for that?
I think that's just a widget, which really doesn't require a specific addon. You just create an HTML widget and choose the position, then enter the relative HTML code for that widget (provided by Discord) ...you'll have to customize to your liking, etc.

Code:
<div class="block">
<a href="https://yourlinktoryourdiscordgoeshere.xyz/" class="discord-widget">
<img src="https://discordapp.com/api/guilds/XXXXXXXXXXXXX/widget.png?style=banner3">
</a>
</div>
Replace the a href with your url to your discord (invite link?) and update the XXXXXX with your specific instance ID.
(banner3 is the version of the sample you posted)

This is probably what your really want:
https://discord.com/blog/add-the-discord-widget-to-your-site/
 
Last edited:
I think that's just a widget, which really doesn't require a specific addon. You just create an HTML widget and choose the position, then enter the relative HTML code for that widget (provided by Discord) ...you'll have to customize to your liking, etc.

Code:
<div class="block">
<a href="https://yourlinktoryourdiscordgoeshere.xyz/" class="discord-widget">
<img src="https://discordapp.com/api/guilds/XXXXXXXXXXXXX/widget.png?style=banner3">
</a>
</div>
Replace the a href with your url to your discord (invite link?) and update the XXXXXX with your specific instance ID.
(banner3 is the version of the sample you posted)

This is probably what your really want:
https://discord.com/blog/add-the-discord-widget-to-your-site/

Worked like a charm, thank you so much!
 
Top Bottom