XF 1.5 ADs after id="pageDescription" inside threads

rosal

Active member
Hi i need to add a ADs after pageDescription, what template i need to modify?

And i only this ad to visible in threads.

Example:

ad_xenforo.webp

Best Regards
 
Search the templates system for "Tags:" because I'm assuming you'd want it after that. It'll be in thread_view template. Write the word "Testing" near the tags area, move it around a bit and keep saving the template. You'll eventually work out where you need to place your code. I've found some pretty cool places to enter ads using that kinda trick.
 
Already found it.
Template : thread_view and after code.

Code:
<xen:title>{xen:helper threadPrefix, $thread, escaped}{$thread.title}{xen:helper pagenumber, $page}</xen:title>
<xen:h1>{xen:helper threadPrefix, $thread}{$thread.title}</xen:h1>
 
Search the templates system for "Tags:" because I'm assuming you'd want it after that. It'll be in thread_view template. Write the word "Testing" near the tags area, move it around a bit and keep saving the template. You'll eventually work out where you need to place your code. I've found some pretty cool places to enter ads using that kinda trick.

Yes that is a bether place.

So i add after this code.
Code:
<xen:if is="{$threadTagsHtml} AND {$xenOptions.tagPosition} == 'top'">{xen:raw $threadTagsHtml}</xen:if>

Thanks
 
Top Bottom