Place a widget/ad after the first post
-
I would like to place a widget, specifically an ad, after the first post of a thread.
What’s the best way to handle this? A plug-in? If so, how?
Thanks!
-
Here we go, [email protected](for [email protected]) has these widget areas now. They will be available in harmony as well. For anyone who wants to add it to their custom theme, here is the commit https://github.com/NodeBB/nodebb-theme-persona/commit/bd384ad5aa6421b4b7f5b2b4b93a774220f3d226
I added one above the main post and one below. You might need some custom css to add left padding due to the timeline styling used in these themes.
-
I will take a look at this, should be possible to add a new widget area under the main post with
<!-- placed in partials/topic/post.tpl at the end of the file --> {{{ if !./index }}} <div data-widget-area="after-first-post"> {{{each widgets.after-first-post}}} {{widgets.after-first-post.html}} {{{end}}} </div>
Since the main(first) post has an index of 0, that widget area would only show up after the first post.
-
Here we go, [email protected](for [email protected]) has these widget areas now. They will be available in harmony as well. For anyone who wants to add it to their custom theme, here is the commit https://github.com/NodeBB/nodebb-theme-persona/commit/bd384ad5aa6421b4b7f5b2b4b93a774220f3d226
I added one above the main post and one below. You might need some custom css to add left padding due to the timeline styling used in these themes.
-
Awesome! Thank you.
-
-