Help with Blocked words and custom button links

There’s a learning curve on how to do that, but once you’re done, it will be of great help.

To make it short, the part from the tutorial about Discourse modification that is about what you want to achieve is here: https://meta.discourse.org/t/beginners-guide-to-developing-discourse-themes/93648#modifying-discourse-templates-22

If you want to have a ready-to-use skeleton, here’s what to do.

  1. Create a new empty theme component from Admin → Customize → Themes (don’t forget to enable it in your theme(s), or select your current theme.

  2. Go to Edit CSS/HTML.

  3. In Head, paste this code:

<script type="text/x-handlebars" data-template-name="/connectors/above-main-container/custom-buttons">
  <div class="wrap">
    <div class="custom-buttons">
        <a href="/faq">Community guidelines</a> | <a href="#">Contact Moderator</a>
    </div>
  </div>
</script>
  1. In the CSS tab, paste this code:
.custom-buttons {
    margin: 1em 0;
    text-align: right;
}

The result will look like this:

5 Likes