公式広告プラグイン内のハウス広告

It would be more amazing if we can put an email of the advertiser with the specific banner or link and to send him weekly or monthly reports for the performance, like views and clicks.

「いいね!」 2

I’m guessing that’s a bit outside the simple solution this is meant to provide. Sounds like you want a full-fledged advertising solution.

However, having said that, I wouldn’t be surprised if those metrics are actually tracked in the DB, and perhaps you could pull them out with Data Explorer and process them into emails outside of Discourse.

「いいね!」 5

We are trying to pull ads from our rails server where we already have a custom ad server built, but unfortunately there is no easy way to do this without having desktop / mobile versions of the ad slots available. We would be tracking the ad serve / impression on the rails side so need to know which ad we’re displaying on the rails side (can’t rely on media queries on discourse side). We’re trying to avoid hacking the ember code … does anyone have any ideas?

「いいね!」 1

Hello Abram,

Is your ad server open source ? We are looking into similar implementation too.

Thanks

「いいね!」 1

No it isn’t, and it’s extremely basic… We just load up images for particular slots on our site based on an advertiser model with nested advertisements, where each advertisement has a type (string) like “Large Rectangle” that we can request from the slot. All our ads are sponsored so we have been able to keep things simple and do reporting with ahoy.

「いいね!」 2

Great. I am planning to use revive ad server https://www.revive-adserver.net/

「いいね!」 3

Dear Neil,

Any way we can change the sequence of the ads ?
The ads show under the first posts mandatory then we can change the number of after how many posts.
for example quora, the system shows ads after each first post then after 4 or 5 posts you see another ad banner.

Can we achieve this and how ?

「いいね!」 2

現在、広告プラグインではこの機能を実装する方法はありません。以前もリクエストがあったため、最初の投稿後に広告を表示し、その後 N 投稿ごとに広告を表示するチェックボックス設定を追加するのが理にかなっているかもしれません。

「いいね!」 11

通常の src 属性の JavaScript コードがハウス広告として機能しないのはなぜですか?コンテンツセキュリティポリシーを追加しても解決しません。この問題の原因は何ですか?

「いいね!」 2

公式の広告プラグインが、説明されている「ハウス広告」オプションを提供しなくなったと理解してよろしいでしょうか?

プラグインをインストールしたところ、GitHub のインストール手順には記載されていない追加の広告ソースオプションが設定に含まれていますが、独自の広告を作成するオプションはなくなっているようです。

「いいね!」 1

プラグインタブにあります。

「いいね!」 5

ありがとうございます!私はどうやら学習曲線の非常に初期段階にいるようです…

「いいね!」 2

私も探すのに時間がかかりました!それは、広告を作成するためのインターフェースのスペースが必要だからです…

「いいね!」 3

この件について何か進展はありますか?だいぶ時間が経ちましたが、カテゴリに関するオプションが見つかりません。このプラグインは現在もメンテナンスされていますか?

「いいね!」 1

これは公式プラグインです。メンテナンスもされています。

カテゴリごとの CSS タグを使用して広告を作成し、表示させたいカテゴリ以外からはすべて非表示にすることで、外部カテゴリの問題を解決しました。少し手間はかかりますが、機能しています。

「いいね!」 8

それはスラム的だけど、素晴らしいね :slight_smile: でも、公式のカテゴリ別のものを見てみたい。一部の領域を「プレミアム」にしたり、カテゴリごとに異なるターゲット設定を持つ広告を導入すれば、より直感的で関連性の高いものになるだろう。

「いいね!」 3

例を使ってあなたの解決策を説明してもらえますか? 使用した HTML/CSS コードは何ですか?

「いいね!」 1

特定のカテゴリ内でのみホーム広告を表示したい場合は、以下のソリューションを試してください。

テーマの CSS 設定にこのコードを追加してください。

    .house-creative.house-post-bottom a.between-posts-ad {
     display: none;  
     }
     .category-_______ .house-creative.house-post-bottom a.between-posts-ad {
     display: block; 
     }

ここで .category-_______ の部分は、カテゴリ設定から確認できるカテゴリのスラッグに置き換えてください。

「いいね!」 8

私のフォーラムでは、以下の箇所に広告を表示しています。

  • n 件ごとに
  • トピックの下部

トピックの投稿数が n の倍数の場合、トピックの下部に広告が 2 回表示されてしまい、少し不自然に見えます。

プラグインでこれを回避できるようにしていただけると幸いです。

「いいね!」 2

興味深い質問ですね

「いいね!」 2