• Stars
    star
    120
  • Rank 285,251 (Top 6 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created almost 9 years ago
  • Updated 6 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Official Discourse Advertising Plugin. Install & Start Serving Ads on Your Discourse Forum

Official Discourse Advertising Plugin

Official Plugin Topic & Documentation: https://meta.discourse.org/t/official-advertising-ad-plugin-for-discourse/33734

This is the official Discourse advertising plugin. It allows advertisements to be served by supported advertising platforms for users with a Discourse forum.

Authors: Sarah Ni & Vi Nguyen

Version: 1.2.5

Contributors: See credits section below

License: MIT License

Supported Discourse Version: 1.4

Supported Ad Platforms:

Quick Start in 3 Steps

This quick start shows you how to install this plugin and use it. Recommended if you have:

  • A live discourse forum
  • You have deployed your live forum using Docker. If you're using Digital Ocean, it's likely that your forum is deployed on Docker.

For non-docker or local development installation (those with programming experience), see Other Installation.

Step 1 - Install the Official Discourse Advertising Plugin

As seen in a how-to on meta.discourse.org, simply add the plugin's repository url to your container's app.yml file:

hooks:
  after_code:
    - exec:
        cd: $home/plugins
        cmd:
          - mkdir -p plugins
          - git clone https://github.com/discourse/discourse-adplugin.git

Rebuild the container

cd /var/discourse
git pull
./launcher rebuild app

Step 2 - Configure Your Settings to Display Your Advertisments

There are 2 easy steps for configuring your Discourse settings to enable advertisements to display in your Discourse forum.

House Ads

If you don't want to use an external ad platform, but want to show your own ads, then House Ads are for you! Define your ads by going to the Admin section of your Discourse forum, and go to the Plugins section. On the left, you should see a link called "House Ads".

Begin by creating your ads. Give each a short descriptive name and enter the html for each. Style them using a custom theme (Admin > Customize > Themes). Lastly, click the Settings button in the House Ads UI and choose which of your ads to show in each of the ad slots. The ads will start showing as soon as you add them to slots.

Step 2(a) - Choose Your Advertisement Platform

  • Navigate to the Admin section in your Discourse forum.
  • Click on Settings and a left vertical navigation bar should appear.
  • Choose your advertisement platform.
    • House Ads - if you want to create and serve ads from your Discourse instance.
    • Adsense - if using Adsense as your advertisement platform.
    • DFP - if using the DoubleClick for Publishers advertisement platform.
    • Carbon Ads - if using the Carbon Ads advertisement platform.
    • AdButler - if using the AdButler advertisement platform.

Step 2(b) - Input Your Details

  1. Add in your publisher ID - your publisher ID can be obtained from your ad platform and can also be found in your ad tag (see pictures below).
  2. Choose your trust level from the dropdown box. This will only display ads to users with a certain level of trust. For more details about trust levels go to the Plugin Features heading.
  3. Get the Advertisement Tag from your Ad Platform - see the images below to see what a tag looks like.
  4. Add parts of your ad code to Discourse's site settings for the locations you wish your ad to appear. Refer to image for your ad platform to where parts of your ad tag should go. For more detail about where the ad will appear
  5. Choose Your Ad Size - this is the same size that you've put into your ad provider to create your ad. Go to the Plugin Features heading to see a list of supported Ad sizes.
Adsense Advertisement Tag to Discourse's Site Settings

image

DoubleClick for Publishers' Advertisement Tag to Discourse's Site Settings

image

Amazon Affiliates' Advertisement Tag to Discourse's Site Settings

Only for Product Link and Banner Ads.

image

Carbon Ads Script Tag to Discourse's Site Settings

adpluginexample

AdButler Ads Zone URL to Discourse's Site Settings

This plugin only support AdButler "Standard Zones". Text and VAST are not supported.

If you browse to a zone in the AdButler admin, then you can find the Publisher ID (PPPPPP) and the Zone ID (ZZZZZZ) in the URL of your browser's address bar:

https://admin.adbutler.com/?ID=PPPPPP&p=textadzone.view&zoneID=ZZZZZZ

Configure the ads in Admin > Settings > AdButler. Enter the publisher id in the "adbutler publisher id" setting, and enter the Zone IDs in the different zone id settings as desired.

By default, ads are assumed to be size 728 x 90, or 320 x 50 in mobile view. To use different size ads, customize using CSS in your site's theme. Override the following CSS:

.adbutler-ad {
  width: 728px;
  height: 90px;
}

.adbutler-mobile-ad {
  width: 320px;
  height: 50px;
}

Step 3 - See Your Ad

Once you've configured your settings and your advertising platform has ads that are ready to serve, navigate to the page where you've inputted for the location and you should see ads.

Plugin Features

In this section, we go into more detail on:

  • Available Locations for Ad Display
  • Trust Levels
  • Personal messages
  • Groups
  • Categories
  • Tags

Available Locations for Ad Display

The following are available locations along with a description and an image showing their location within Discourse to display ads for all platforms.

Location Name Description
Topic List Top Ad will appear at the header of Discourse homepage
Topic Above Post Stream Ad will appear in the header of all Discourse forum topics
Topic Above Suggested Ad will appear in the footer above suggested topics of all Discourse forum topics
Post Bottom & Nth Post Ad will appear on the stipulated nth post within a topic. So if you have 5 posts in a topic and you want the ad to display after on the 2nd post, put 2 in ad_platform_nth_post_code.

adplugin2

Trust Levels

You can use the ad_platform_through_trust_level dropdown to disable ads for users above a certain trust levels. As a guide, choosing:

  • 0 shows ads to users that are not logged in.
  • 1 shows ads to users that are not logged in, and to new and basic users.
  • 2 shows ads to members as well, but not to regulars and leaders.
  • 3 shows ads to everyone, but not to leaders.
  • 4 shows ads to everyone including leaders.

To find more about trust levels in Discourse, refer to Discourse's posts on trust levels

Personal messages

By default, ads won't be shown in personal messages. To enable ads in personal messages, use the "no ads for personal messages" setting.

Groups

To give some users an ad-free experience, put the users in groups and add those groups to the "no ads for groups" setting.

Categories

To disable ads in certain categories, add them to the "no ads for categories" setting. Also consider using the "no ads for restricted categories" to disable ads in all categories that have read access restrictions.

Tags

Individual topics can have ads disabled by using tags, and entering those tags in the "no ads for tags" setting. This is useful if some topics violate ad network policies.

Other Installation

There are two sets of installation instructions:

  1. Non-Docker Installation - If you have experience with programming. This will set up this plugin as a git submodule in your Discourse directory.
  2. Local Development - If you want develop locally and have experience with programming. This will set up this plugin as a symlinked file in Discourse's plugin directory.

If you already have a live Discourse forum up, please go to the Quick Start heading above.

1. Non-docker installation

  • Run bundle exec rake plugin:install repo=https://github.com/discourse/discourse-adplugin.git in your discourse directory
  • In development mode, run bundle exec rake assets:clean
  • In production, recompile your assets: bundle exec rake assets:precompile
  • Restart Discourse

2. Local Development Installation

  • Clone the Discourse Adplugin Repo in a new local folder.
  • Separately clone Discourse Forum in another local folder and install Discourse.
  • In your terminal, go into Discourse folder navigate into the plugins folder. Example cd ~/code/discourse/plugins
  • Create a symlink in this folder by typing the following into your terminal :
ln -s ~/whereever_your_cloned_ad_plugin_path_is .
For example: ln -s ~/discourse-plugin-test .
  • You can now make changes in your locally held Discourse Adplugin folder and see the effect of your changes when your run rails s in your locally held Discourse Forum files.

Questions or Want to Contribute?

Open an Issue on this repository to start a chat.

Credits

Discourse.org: Thanks to our amazing mentor @eviltrout and the wonderful Discourse team!

Our Coaches: Very special thank you to our coaches and honorary coach - @georg, @betaass, @adelsmee, @davich, @link664, @tomjadams, @compactcode, @joffotron, @jocranford, @saramic, @madpilot, @catkins

Rails Girls: Thanks @sareg0 and the Rails Girls Team for the opportunity to participate in Rails Girls Summer of Code 2015.

To create this plugin we referenced the original dfp plugin (created by @nlalonde) and the adsense plugin.

More Repositories

1

discourse

A platform for community discussion. Free, open, simple.
Ruby
38,751
star
2

message_bus

A reliable and robust messaging bus for Ruby and Rack
Ruby
1,636
star
3

discourse_docker

A Docker image for Discourse
Shell
1,547
star
4

onebox

(DEPRECATED) A gem for turning URLs into website previews
Ruby
795
star
5

logster

Log viewer UI and framework for rack
Ruby
551
star
6

wp-discourse

WordPress plugin that lets you use Discourse as the community engine for a WordPress blog
PHP
507
star
7

prometheus_exporter

A framework for collecting and aggregating prometheus metrics
Ruby
486
star
8

mini_sql

a minimal, fast, safe sql executor
Ruby
374
star
9

discourse_api

Ruby API for Discourse
Ruby
260
star
10

DiscourseMobile

Discourse Mobile
JavaScript
221
star
11

rails_multisite

Multi tenancy for Rails applications
Ruby
216
star
12

mini_scheduler

Adds recurring jobs for Sidekiq
Ruby
169
star
13

discourse-solved

Allow accepted answers on topics
Ruby
158
star
14

pups

Simple yaml based bootstrapper for Linux machines
Ruby
151
star
15

discourse-topic-voting

Adds the ability for voting on a topic within a specified category in Discourse.
Ruby
111
star
16

rails_failover

Ruby
105
star
17

discourse-oauth2-basic

A basic OAuth2 plugin for use with Discourse
Ruby
103
star
18

mini_mime

minimal mime type library
Ruby
95
star
19

discourse-chat-integration

Ruby
89
star
20

all-the-plugins

Ruby
87
star
21

discourse-data-explorer

SQL Queries for admins in Discourse
Ruby
80
star
22

discourse-air

A modern theme with a dark mode option.
SCSS
73
star
23

docker_manager

Plugin for use with discourse docker image
Ruby
67
star
24

discourse-spoiler-alert

A plugin for discourse to hide spoilers behind the spoiler-alert jQuery plugin
JavaScript
61
star
25

discourse-whos-online

A plugin for Discourse which uses the messagebus to display a live list of active users
JavaScript
58
star
26

discourse-tagging

Tagging functionality for Discourse Forums
JavaScript
58
star
27

email_reply_trimmer

Library to trim replies from plain text email.
Ruby
56
star
28

discourse-translator

Ruby
50
star
29

discourse-calendar

Adds the ability to create a dynamic calendar in the first post of a topic.
Ruby
49
star
30

discourse-steam-login

Allows user authentication with discourse via the Steam user API
Ruby
48
star
31

discourse-activity-pub

Adds ActivityPub support to Discourse.
Ruby
48
star
32

material-design-stock-theme

SCSS
46
star
33

discourse-user-notes

Plugin for Staff users to create notes on users
Ruby
45
star
34

discourse-checklist

A simple checklist rendering plugin for discourse
Ruby
44
star
35

discourse-chat

Chat inside Discourse
44
star
36

discourse-math

Official MathJax support for Discourse
JavaScript
44
star
37

discourse-patreon

Enable syncronization between Discourse Groups and Patreon rewards
Ruby
43
star
38

discourse-assign

Plugin for assigning users to a topic
Ruby
43
star
39

discourse-push-notifications

Plugin for integrating Chrome and FireFox push notifications
39
star
40

discourse-algolia

A plugin for indexing and searching your Discourse with Algolia
JavaScript
39
star
41

discourse-cakeday

Show a birthday cake emoji beside the names of members on their join anniversary, or their actual birthday -- and a browsable directory of upcoming anniversaries / birthdays.
JavaScript
38
star
42

discourse-saml

Support for SAML in Discourse
Ruby
38
star
43

discourse_theme

CLI helper for developing Discourse themes
Ruby
37
star
44

discourse-ai

Ruby
37
star
45

discourse_api_docs

Discourse API Documentation
JavaScript
37
star
46

letter-avatars

Teeny tiny web service to generate letter-based avatars
Ruby
37
star
47

discourse-encrypt

A plugin that provides a secure communication channel through Discourse.
JavaScript
37
star
48

discourse-canned-replies

Adds a means to insert templates from the composer.
JavaScript
35
star
49

discourse-github

Ruby
33
star
50

discourse-openid-connect

Allows an OpenID Connect provider to be used as an authentication provider for Discourse
Ruby
32
star
51

discourse-sitemap

Generate XML sitemap for your Discourse forum.
Ruby
32
star
52

discourse-auth-proxy

An http proxy that uses the DiscourseConnect protocol to authenticate users
Go
31
star
53

discourse-brand-header

Brand header theme component for Discourse
HTML
31
star
54

install-rails

Install Rails
Shell
29
star
55

discourse-reactions

JavaScript
28
star
56

discourse-gamification

Ruby
27
star
57

discourse-slack-official

DEPRECATED: Official Slack integration for Discourse
Ruby
26
star
58

core

25
star
59

discourse-affiliate

Ruby
25
star
60

discourse-follow

A Discourse plugin that lets you follow other users.
Ruby
24
star
61

ember-route-template

JavaScript
24
star
62

discourse-simple-theme

Sam's simple discourse theme
SCSS
24
star
63

all-the-themes

Ruby
23
star
64

discourse-docs

JavaScript
22
star
65

discourse-custom-header-links

JavaScript
22
star
66

discourse-post-voting

Allows users to vote on posts within a topic
Ruby
21
star
67

discourse-kanban-theme

A Discourse theme component providing basic kanban-board functionality
JavaScript
21
star
68

DiscoTOC

A Discourse theme component that generates a table of contents for topics with one click
JavaScript
21
star
69

discourse-category-banners

JavaScript
20
star
70

discourse-zoom

Integrate Zoom events in Discourse.
Ruby
20
star
71

discourse-rss-polling

Ruby
19
star
72

discourse-bbcode-color

A Discourse Plugin to support BBCode color tags.
JavaScript
19
star
73

discourse-plugin-discord-auth

A Discourse plugin to login over Discord
Ruby
18
star
74

image-optimizer

JavaScript
18
star
75

discourse-jwt

Discourse Auth support for JSON Web Tokens (JWT)
Ruby
17
star
76

discourse-signatures

A Discourse Plugin to show user signatures below posts
Ruby
17
star
77

github_badges

DEPRECATED: GitHub Badges plugin
Ruby
16
star
78

discourse-tooltips

Show tooltips around Discourse on hover, including topic previews
JavaScript
15
star
79

discourse-perspective-api

Google Perspective API Plugin for Discourse
Ruby
15
star
80

discourse-zendesk-plugin

Official Zendesk Integration for Discourse
Ruby
15
star
81

discourse-code-review

This allows commits and pull requests to be imported to Discourse as topics and reviewed
Ruby
14
star
82

discourse-prometheus

Official Discourse Plugin for Prometheus Monitoring
Ruby
14
star
83

mattermost-css-hacks

A mattermost plugin we use to customize our CSS
JavaScript
14
star
84

Discourse-easy-footer

JavaScript
13
star
85

Discourse-Tiles-image-gallery

HTML
13
star
86

discourse-anonymous-moderators

Ruby
13
star
87

discourse-moderator-attention

Ruby
13
star
88

discourse-user-card-badges

This plugin allows users to choose one badge with an image to show on their user card.
Ruby
12
star
89

discourse-linkedin-auth

LinkedIn OAuth Login support for Discourse
Ruby
12
star
90

discourse-plugin-skeleton

Template for Discourse plugins
Ruby
12
star
91

discourse-unlock

Ruby
11
star
92

discourse-microsoft-auth

Ruby
11
star
93

discourse-topic-thumbnails

Display thumbnails in topic lists
JavaScript
11
star
94

discourse-footnote

footnotes for posts in Discourse
JavaScript
11
star
95

discourse-teambuild

Team building activity for Discourse
Ruby
11
star
96

discourse-automation

Ruby
11
star
97

discourse-fingerprint

A plugin that computes user fingerprints to help administrators combat internet trolls.
Ruby
11
star
98

discourse-bbcode

vBulletin BBCode plugin
JavaScript
11
star
99

discourse-shared-edits

Shared edits for Discourse
Ruby
11
star
100

graceful

SCSS
10
star