Do you have original customisations?

I’m seeing more and more uniquely customised Discourse implementations around and it’s fantastic.

I’d love to build up a list so that people can see what is possible.

If you have customised your community in a way that is unique, please post a link along with a description of what you have done (and how, if you’re willing to share that). Examples might be customised navigation, banner posts, footers, promo spots etc.

Note: Please only contribute to this topic if you have done something unique to your forum.

21 Likes

assuming that stuff built with webhooks and the API counts

Janitor’s new blog uses Discourse for most of the real work. A staff-only tag (published) is used to make it show up on the page, comments are backed by Discourse, and, since we’re actually doing a one-way sync, the page loads very fast.

8 Likes

That’s fantastic @notriddle - I love the idea. So does the below mean that anyone can post a blog topic, but it’s not published until a staff-member tags it?

// Discourse is made up of "topics" that contain one or more "posts".
// The first post in a published[^1] blog[^2] topic is considered the blog post itself.
// The rest are comments on it.
//
// [^1] "published" is a staff-only-tag.
// [^2] "blog" is a category, and is not staff-only.

Yeah, though creating topics in the category is locked to TL1 because there’s no reason for completely new users to be writing blog posts.

1 Like

Here’s our forum!:

We’re using a pretty vanilla install, i.e. not really any plugins beyond the WP Discourse plugin for SSO with our Wordpress site. But we’ve done some fairly extensive frontend / design tweaks.

Aside from color scheme and some UI adjustments and simplifications I think the most noticeable thing we did is add a visual header banner for each category. We liked how this looked on some other sites we came across e.g. Flarum and found it nice to have extra visual distinction for categories. This is done with custom HTML in the “after header” section plus some fairly complicated CSS targeting…luckily Discourse has category slugs included in class names!

Other tweaks we did include a custom header (won’t go into detail b/c there are other great detailed tutorials on that to be found here!); a bunch of minor things w/ text size and button display; and hiding a few things with “display: none” that seemed inessential for our moderately sized forum, to try to minimize visual clutter.

12 Likes

This looks awesome! Could you share this as a theme (component)?

7 Likes

Bro this is what I was looking for! Thank you so much for posting this. Im about to head out but I’ll give it a try, should be simple to figure out the HTML thing. CSS part should be easy as you mentioned category slug styles are ready. I’ll just be using background images instead of colors.

I also gotta try to to this for profile pictures (Have them go full width but everything else stay the same)

1 Like

Awesome! Btw just found this other relevant discussion and posted w/ more detail and code examples here:

(Looks like there are a couple different attempts at this so we may be able to merge them / create a theme component at some point!)

1 Like

I really like Discourse and there are a lot of possibilities. For example, only using the following code:

currentUser.get('trust_level');

We can do the following things: personalize users.

The participant receives the following trust levels, fills in the profile, and participates in the discussion. You can write a lot of rules, but few people like to search the site and read all in different places. There was an idea to create a page where you could put everything in one place. This will be information specific to the individual participant.

  • As he filled out the profile.
  • Why would he get a diploma and what would it look like?
  • Why would he pass a bot?
  • What else can he do?

The page can look like anything, for example.

The link to this page can come from different places: from the personal first message or from different widgets. Like this.

All in one place.

Google translator. (

1 Like

This looks fantastic, a beautiful design. Would love to see your theme published.

2 Likes