Thanks for your help, but i still can see my banner on all pages, i copied this
PHP Code:
if ($this_is_home_page && SHOW_BANNERS_GROUP_SET1 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET1)) {
on my default template BUT the problem is in my crista_violet template because i have this if
PHP Code:
(SHOW_BANNERS_GROUP_SET3 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET3)) {
on line 70
i changed it to
PHP Code:
($this_is_home_page && SHOW_BANNERS_GROUP_SET3 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET3)) {
What's the problem?