إعلانات المنزل في مكون الإعلانات الرسمي

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)

There’s no way to do this currently with the ad plugin. It has been requested before, so maybe a checkbox setting to show an ad after the first post and then every N posts after that would make sense.

11 إعجابًا

لماذا لا يعمل كود JavaScript المعتاد المأخوذ من src كإعلان منزلي؟ حتى إضافة سياسة أمان المحتوى (Content Security Policy) لا تساعد. ما الذي يسبب هذه المشكلة؟

إعجابَين (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-_______، استبدل السداسي السفلي بالـ slug الخاص بالفئة (يمكنك العثور عليه في إعدادات الفئة).

8 إعجابات

في منتداي، أقوم بعرض الإعلانات:

  • كل n منشور
  • في أسفل الموضوع.

بالنسبة للمواضيع التي تحتوي على عدد من المنشورات هو مضاعف للعدد n، يتم عرض الإعلان مرتين في أسفل الموضوع، وهو ما يبدو غريبًا بعض الشيء.

سيكون من الجيد إذا كان بإمكان الإضافة تجنب ذلك؟

إعجابَين (2)

سؤال مثير للاهتمام

إعجابَين (2)