XF 1.5 how do I add a Banner to a specific 'Tags' page Only.

insomniac

Member
Hi guys I would like to know how do I add a Banner to a specific 'Tags' page.

I want the banner to show up only when that tags page is loaded .

I want it that -

when user lands on www. blahblah.. com/tags/keyword-A It will show the add

but Not when user lands on www. blahblah.. com/tags/keyword-B
i don't want it to show the banner .

So my question is how do i go about editing those pages.

any help would be greatly appreciated .
 
Last edited:
The page is the same in each case - the tag_view template.

You may be able to edit the PAGE_CONTAINER template and use a conditional statement matching the URI:
Code:
<xen:if is="{$requestPaths.requestUri} == '/index.php?tags/keyword'">
Content
</xen:if>
 
Top Bottom