PDA

View Full Version : Ho to show ads only on CMS index page?


baerwurz
05-05-2010, 11:16 AM
Hi,

i want to show Wallpaper Ads on my frontpage:

CMS: domain.tld
Forum: domain.tld/forum/

If i use: <vb:if condition="THIS_SCRIPT == 'vbcms'">CMS</vb:if>

The Wallpaper Ad is on every CMS Page, every article.

But i want only to show the wallpaper on CMS index page.

Any idea how to do this?

baerwurz
05-07-2010, 08:05 AM
No Idea?

Is there no condition available to choose only cms index page?

Lynne
05-07-2010, 01:42 PM
I think you can use $_GET['r'] == 1 to be the first page.

karlm
04-14-2011, 08:36 AM
Lynne, any chance of elaboration on this?

I'm after the same thing as the OP, but can't understand how I would use your code to implement anything.

Lynne
04-14-2011, 04:18 PM
To only put something on the very first page, put a condition around it like this:
<vb:if condition="$_GET['r'] == '1-home-page-one' OR !$_GET['r']">hello</vb:if>
Change '1-home-page-one'' to whatever your homepage is called.